import json, os, sys, urllib.request, urllib.error DEFAULT_BASE = "https://api.ransomware.live/v2" def _cfg(): return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) def _inputs(): return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) def _get(cfg, path): base = (cfg.get("base_url") or DEFAULT_BASE).rstrip("/") headers = {"User-Agent": "Riposte-SOAR", "Accept": "application/json"} req = urllib.request.Request(base + path, headers=headers) with urllib.request.urlopen(req, timeout=60) as r: raw = r.read() return json.loads(raw) if raw else None def _run(fn): try: print(json.dumps(fn(_cfg(), _inputs()))) 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) def main(cfg, inputs): data = _get(cfg, "/groups") n = len(data) if isinstance(data, list) else 0 return {"ok": True, "groups": n} _run(main)