28 lines
1.5 KiB
Python
28 lines
1.5 KiB
Python
#!/usr/bin/env python3
|
|
import json, re, urllib.request, urllib.error, paramiko
|
|
PASS = "Bbt9115xty9176!"
|
|
ACCOUNT = "2599c23bbb1255dbb73e8d34b4115fda"
|
|
TUNNEL = "03079a26-f14c-4622-b463-ba54a24f7472"
|
|
CF = "https://api.cloudflare.com/client/v4"
|
|
|
|
c = paramiko.SSHClient(); c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
|
c.connect("10.10.0.1", username="admin", password=PASS, timeout=15)
|
|
_, o, e = c.exec_command("cat /usr/local/etc/wan-dns-failover.env", timeout=30)
|
|
o.channel.recv_exit_status()
|
|
TOK = re.search(r"CLOUDFLARE_API_TOKEN=([^\s\"']+)", (o.read()+e.read()).decode()).group(1)
|
|
c.close()
|
|
|
|
def call(path, method="GET", body=None):
|
|
req = urllib.request.Request(CF+path, data=json.dumps(body).encode() if body else None, method=method,
|
|
headers={"Authorization": f"Bearer {TOK}", "Content-Type": "application/json"})
|
|
try:
|
|
with urllib.request.urlopen(req, timeout=30) as r: return r.status, json.load(r)
|
|
except urllib.error.HTTPError as e: return e.code, json.loads(e.read().decode())
|
|
|
|
for path in ["/accounts", f"/accounts/{ACCOUNT}/cfd_tunnel", f"/accounts/{ACCOUNT}/cfd_tunnel/{TUNNEL}/configurations"]:
|
|
code, res = call(path)
|
|
print(path, code, "success=", res.get("success"), "errors=", res.get("errors"))
|
|
if res.get("result") and path.endswith("configurations"):
|
|
ing = res["result"].get("config", {}).get("ingress", [])
|
|
print(" ingress count", len(ing))
|
|
print(" exposedgays", [i.get("hostname") for i in ing if i.get("hostname") and "exposed" in i.get("hostname","")]) |