9504b22e04
5 commands: IP abuse-reputation check, report abusive IP, blacklist retrieval, CIDR-block check. API-key auth, stdlib-only. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
import json, os, sys, urllib.parse, urllib.request, urllib.error
|
|
|
|
API = "https://api.abuseipdb.com/api/v2"
|
|
|
|
|
|
def _cfg():
|
|
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
|
|
|
|
|
|
def request(method, path, params=None, body=None):
|
|
url = API + path
|
|
q = {k: str(x) for k, x in (params or {}).items() if x not in (None, "")}
|
|
if q:
|
|
url += ("&" if "?" in url else "?") + urllib.parse.urlencode(q)
|
|
data = urllib.parse.urlencode(body).encode("utf-8") if body is not None else None
|
|
headers = {"Accept": "application/json", "Key": str(_cfg().get("api_key") or "")}
|
|
if data is not None:
|
|
headers["Content-Type"] = "application/x-www-form-urlencoded"
|
|
req = urllib.request.Request(url, data=data, headers=headers, method=method)
|
|
with urllib.request.urlopen(req, timeout=60) as r:
|
|
raw = r.read()
|
|
return json.loads(raw) if raw else {}
|
|
|
|
|
|
def main():
|
|
inputs = json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
|
|
ip = inputs.get("ip")
|
|
if not ip:
|
|
raise Exception("ip is required")
|
|
categories = inputs.get("categories")
|
|
if not categories:
|
|
raise Exception("categories is required")
|
|
comment = inputs.get("comment")
|
|
|
|
body = {"ip": ip, "categories": categories}
|
|
if comment:
|
|
body["comment"] = comment
|
|
|
|
result = request("POST", "/report", body=body)
|
|
print(json.dumps(result))
|
|
|
|
|
|
try:
|
|
main()
|
|
except urllib.error.HTTPError as e:
|
|
print(json.dumps({"error": "HTTP " + str(e.code), "detail": e.read().decode("utf-8", "replace")}))
|
|
sys.exit(1)
|
|
except Exception as e:
|
|
print(json.dumps({"error": str(e)}))
|
|
sys.exit(1)
|