Files
Guillaume BOURGEOIS 729c339e2f feat(rapid7-insightidr): InsightIDR integration (19 commands + OCSF ingestion)
REST API integration for Rapid7 InsightIDR. Investigation ingestion
(list_investigations) with an exhaustive OCSF mapper and a bundled default
incident type, plus 18 commands across investigations (list/get/search/
create/update/assign/set-status/bulk-close), investigation alerts and Rapid7
product alerts, custom threat indicators (add/replace), log management and
LEQL log/log-set queries with downloads, and user directory search.

API v1/v2 selectable per instance (is_v2) and per command (api_version);
multi-customer query parameter supported on v2 calls.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-27 14:00:29 +02:00

53 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", "{}"))
region = str(s.get("region") or "us").strip().lower()
base = "https://" + region + ".api.insight.rapid7.com/"
headers = {"X-Api-Key": s.get("api_key", ""), "Accept": "application/json"}
return base, headers
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def run():
base, headers = _cfg()
inp = _inputs()
start_time = inp.get("start_time")
end_time = inp.get("end_time")
time_range = inp.get("time_range")
if not (start_time or end_time or time_range):
time_range = "Last 3 days"
params = {
"from": start_time,
"to": end_time,
"time_range": time_range,
"query": inp.get("query"),
"limit": inp.get("limit"),
}
clean = {k: v for k, v in params.items() if v not in (None, "")}
# Up to 10 log IDs are joined with ':' in the path.
log_ids = str(inp.get("log_ids", "")).replace(",", ":")
url = base + "log_search/download/logs/" + urllib.parse.quote(log_ids, safe=":")
if clean:
url += "?" + urllib.parse.urlencode(clean, doseq=True)
dl_headers = dict(headers)
dl_headers["Accept-Encoding"] = ""
req = urllib.request.Request(url, headers=dl_headers, method="GET")
with urllib.request.urlopen(req, timeout=120) as r:
content = r.read().decode("utf-8", "replace")
print(json.dumps({"content": content, "log_ids": inp.get("log_ids")}))
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)