ef215daa88
Sekoia XDR (siem): alert ingestion (list_alerts) with an exhaustive OCSF mapper and a bundled 'Sekoia XDR Alert' default type, plus 20 commands across alerts (list/get/search, status workflow, comments), event search jobs (create/status/ results + one-shot search_events), cases, asset management, users, kill chains and a generic authenticated HTTP passthrough. Bearer-token auth, EU host default. SEKOIA Intelligence Center (enrichment): observable/indicator/indicator-context CTI queries plus ip/url/domain/file/email reputation lookups (STIX type resolved automatically). No fetch. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
57 lines
1.8 KiB
Python
57 lines
1.8 KiB
Python
import json, os, sys, urllib.request, urllib.parse, urllib.error
|
|
|
|
|
|
def _cfg():
|
|
s = json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
|
|
base = str(s.get("url") or "https://api.sekoia.io").rstrip("/")
|
|
headers = {"Authorization": "Bearer " + s.get("api_key", ""), "Content-Type": "application/json", "Accept": "application/json"}
|
|
return base, headers
|
|
|
|
|
|
def _inputs():
|
|
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
|
|
|
|
|
|
def _json_arg(value):
|
|
# Accept a JSON object string; ignore anything that does not parse to an object.
|
|
if not value:
|
|
return None
|
|
if isinstance(value, dict):
|
|
return value
|
|
try:
|
|
parsed = json.loads(value)
|
|
return parsed if isinstance(parsed, dict) else None
|
|
except Exception:
|
|
return None
|
|
|
|
|
|
def run():
|
|
base, headers = _cfg()
|
|
inp = _inputs()
|
|
method = str(inp.get("method") or "GET").upper()
|
|
suffix = inp.get("url_suffix", "")
|
|
params = _json_arg(inp.get("parameters"))
|
|
body = _json_arg(inp.get("data"))
|
|
|
|
url = base + "/" + str(suffix).lstrip("/")
|
|
if params:
|
|
url += ("&" if "?" in url else "?") + urllib.parse.urlencode(params, doseq=True)
|
|
data = json.dumps(body).encode("utf-8") if body is not None and method in ("POST", "PUT", "PATCH") else None
|
|
req = urllib.request.Request(url, data=data, headers=headers, method=method)
|
|
with urllib.request.urlopen(req, timeout=90) as r:
|
|
raw = r.read()
|
|
try:
|
|
print(json.dumps(json.loads(raw) if raw else {}))
|
|
except Exception:
|
|
print(json.dumps({"raw": raw.decode("utf-8", "replace")}))
|
|
|
|
|
|
try:
|
|
run()
|
|
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)
|