feat(cybereason): new Cybereason EDR integration

Cybereason API, 7 commands: query Malops, list sensors, get machine details,
isolate/un-isolate machine (containment), block file hash. Session (login)
auth, stdlib-only.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Guillaume BOURGEOIS
2026-07-12 00:06:32 +02:00
parent 61da5ef145
commit 1c3936992b
8 changed files with 691 additions and 0 deletions
@@ -0,0 +1,89 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error, http.cookiejar, ssl
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _ctx(cfg):
if cfg.get("insecure"):
c = ssl.create_default_context()
c.check_hostname = False
c.verify_mode = ssl.CERT_NONE
return c
return None
class Client:
def __init__(self, cfg):
self.cfg = cfg
self.base = str(cfg.get("server_url", "")).rstrip("/")
ctx = _ctx(cfg)
self.opener = urllib.request.build_opener(
urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar()),
urllib.request.HTTPSHandler(context=ctx) if ctx else urllib.request.HTTPSHandler(),
)
def login(self):
form = urllib.parse.urlencode({
"username": self.cfg.get("username", ""),
"password": self.cfg.get("password", ""),
}).encode("utf-8")
req = urllib.request.Request(self.base + "/login.html", data=form,
headers={"Content-Type": "application/x-www-form-urlencoded"}, method="POST")
with self.opener.open(req, timeout=60) as r:
r.read()
def call(self, method, path, body=None):
url = self.base + path
data = json.dumps(body).encode("utf-8") if body is not None else None
headers = {"Accept": "application/json"}
if data is not None:
headers["Content-Type"] = "application/json"
req = urllib.request.Request(url, data=data, headers=headers, method=method)
with self.opener.open(req, timeout=90) as r:
raw = r.read()
try:
return json.loads(raw) if raw else {}
except Exception:
return {"raw": raw.decode("utf-8", "replace")}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
client = Client(cfg)
client.login()
print(json.dumps(fn(client, 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(client, inputs):
md5 = inputs.get("md5")
if not md5:
raise Exception("md5 is required")
body = [{
"keys": [{"dataType": "MD5", "value": md5}],
"maliciousType": "blacklist",
"remove": False,
"prventExecution": True,
}]
resp = client.call("POST", "/rest/classification/update", body)
if not resp:
return {"ok": True, "blocked": md5}
return resp
_run(main)
@@ -0,0 +1,85 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error, http.cookiejar, ssl
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _ctx(cfg):
if cfg.get("insecure"):
c = ssl.create_default_context()
c.check_hostname = False
c.verify_mode = ssl.CERT_NONE
return c
return None
class Client:
def __init__(self, cfg):
self.cfg = cfg
self.base = str(cfg.get("server_url", "")).rstrip("/")
ctx = _ctx(cfg)
self.opener = urllib.request.build_opener(
urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar()),
urllib.request.HTTPSHandler(context=ctx) if ctx else urllib.request.HTTPSHandler(),
)
def login(self):
form = urllib.parse.urlencode({
"username": self.cfg.get("username", ""),
"password": self.cfg.get("password", ""),
}).encode("utf-8")
req = urllib.request.Request(self.base + "/login.html", data=form,
headers={"Content-Type": "application/x-www-form-urlencoded"}, method="POST")
with self.opener.open(req, timeout=60) as r:
r.read()
def call(self, method, path, body=None):
url = self.base + path
data = json.dumps(body).encode("utf-8") if body is not None else None
headers = {"Accept": "application/json"}
if data is not None:
headers["Content-Type"] = "application/json"
req = urllib.request.Request(url, data=data, headers=headers, method=method)
with self.opener.open(req, timeout=90) as r:
raw = r.read()
try:
return json.loads(raw) if raw else {}
except Exception:
return {"raw": raw.decode("utf-8", "replace")}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
client = Client(cfg)
client.login()
print(json.dumps(fn(client, 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(client, inputs):
sensor_id = inputs.get("sensor_id")
if not sensor_id:
raise Exception("sensor_id is required")
body = {
"limit": 1,
"offset": 0,
"filters": [{"fieldName": "sensorId", "operator": "Equals", "values": [sensor_id]}],
}
return client.call("POST", "/rest/sensors/query", body)
_run(main)
@@ -0,0 +1,86 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error, http.cookiejar, ssl
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _ctx(cfg):
if cfg.get("insecure"):
c = ssl.create_default_context()
c.check_hostname = False
c.verify_mode = ssl.CERT_NONE
return c
return None
class Client:
def __init__(self, cfg):
self.cfg = cfg
self.base = str(cfg.get("server_url", "")).rstrip("/")
ctx = _ctx(cfg)
self.opener = urllib.request.build_opener(
urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar()),
urllib.request.HTTPSHandler(context=ctx) if ctx else urllib.request.HTTPSHandler(),
)
def login(self):
form = urllib.parse.urlencode({
"username": self.cfg.get("username", ""),
"password": self.cfg.get("password", ""),
}).encode("utf-8")
req = urllib.request.Request(self.base + "/login.html", data=form,
headers={"Content-Type": "application/x-www-form-urlencoded"}, method="POST")
with self.opener.open(req, timeout=60) as r:
r.read()
def call(self, method, path, body=None):
url = self.base + path
data = json.dumps(body).encode("utf-8") if body is not None else None
headers = {"Accept": "application/json"}
if data is not None:
headers["Content-Type"] = "application/json"
req = urllib.request.Request(url, data=data, headers=headers, method=method)
with self.opener.open(req, timeout=90) as r:
raw = r.read()
try:
return json.loads(raw) if raw else {}
except Exception:
return {"raw": raw.decode("utf-8", "replace")}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
client = Client(cfg)
client.login()
print(json.dumps(fn(client, 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(client, inputs):
sensor_ids = inputs.get("sensor_ids")
if not sensor_ids:
raise Exception("sensor_ids is required")
sensor_ids_list = [s.strip() for s in str(sensor_ids).split(",") if s.strip()]
if not sensor_ids_list:
raise Exception("sensor_ids is required")
resp = client.call("POST", "/rest/sensors/actions/isolate", {"sensorsIds": sensor_ids_list})
if not resp:
return {"ok": True, "isolated": sensor_ids_list}
return resp
_run(main)
@@ -0,0 +1,90 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error, http.cookiejar, ssl
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _ctx(cfg):
if cfg.get("insecure"):
c = ssl.create_default_context()
c.check_hostname = False
c.verify_mode = ssl.CERT_NONE
return c
return None
class Client:
def __init__(self, cfg):
self.cfg = cfg
self.base = str(cfg.get("server_url", "")).rstrip("/")
ctx = _ctx(cfg)
self.opener = urllib.request.build_opener(
urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar()),
urllib.request.HTTPSHandler(context=ctx) if ctx else urllib.request.HTTPSHandler(),
)
def login(self):
form = urllib.parse.urlencode({
"username": self.cfg.get("username", ""),
"password": self.cfg.get("password", ""),
}).encode("utf-8")
req = urllib.request.Request(self.base + "/login.html", data=form,
headers={"Content-Type": "application/x-www-form-urlencoded"}, method="POST")
with self.opener.open(req, timeout=60) as r:
r.read()
def call(self, method, path, body=None):
url = self.base + path
data = json.dumps(body).encode("utf-8") if body is not None else None
headers = {"Accept": "application/json"}
if data is not None:
headers["Content-Type"] = "application/json"
req = urllib.request.Request(url, data=data, headers=headers, method=method)
with self.opener.open(req, timeout=90) as r:
raw = r.read()
try:
return json.loads(raw) if raw else {}
except Exception:
return {"raw": raw.decode("utf-8", "replace")}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
client = Client(cfg)
client.login()
print(json.dumps(fn(client, 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(client, inputs):
limit = inputs.get("limit")
offset = inputs.get("offset")
filter_field = inputs.get("filter_field")
filter_value = inputs.get("filter_value")
filters = []
if filter_field not in (None, "") and filter_value not in (None, ""):
filters = [{"fieldName": filter_field, "operator": "Equals", "values": [filter_value]}]
body = {
"limit": int(limit) if limit not in (None, "") else 100,
"offset": int(offset) if offset not in (None, "") else 0,
"filters": filters,
}
return client.call("POST", "/rest/sensors/query", body)
_run(main)
@@ -0,0 +1,84 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error, http.cookiejar, ssl
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _ctx(cfg):
if cfg.get("insecure"):
c = ssl.create_default_context()
c.check_hostname = False
c.verify_mode = ssl.CERT_NONE
return c
return None
class Client:
def __init__(self, cfg):
self.cfg = cfg
self.base = str(cfg.get("server_url", "")).rstrip("/")
ctx = _ctx(cfg)
self.opener = urllib.request.build_opener(
urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar()),
urllib.request.HTTPSHandler(context=ctx) if ctx else urllib.request.HTTPSHandler(),
)
def login(self):
form = urllib.parse.urlencode({
"username": self.cfg.get("username", ""),
"password": self.cfg.get("password", ""),
}).encode("utf-8")
req = urllib.request.Request(self.base + "/login.html", data=form,
headers={"Content-Type": "application/x-www-form-urlencoded"}, method="POST")
with self.opener.open(req, timeout=60) as r:
r.read()
def call(self, method, path, body=None):
url = self.base + path
data = json.dumps(body).encode("utf-8") if body is not None else None
headers = {"Accept": "application/json"}
if data is not None:
headers["Content-Type"] = "application/json"
req = urllib.request.Request(url, data=data, headers=headers, method=method)
with self.opener.open(req, timeout=90) as r:
raw = r.read()
try:
return json.loads(raw) if raw else {}
except Exception:
return {"raw": raw.decode("utf-8", "replace")}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
client = Client(cfg)
client.login()
print(json.dumps(fn(client, 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(client, inputs):
start_time = inputs.get("start_time")
end_time = inputs.get("end_time")
body = {}
if start_time not in (None, ""):
body["startTime"] = int(start_time)
if end_time not in (None, ""):
body["endTime"] = int(end_time)
return client.call("POST", "/rest/detection/inbox", body)
_run(main)
@@ -0,0 +1,76 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error, http.cookiejar, ssl
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _ctx(cfg):
if cfg.get("insecure"):
c = ssl.create_default_context()
c.check_hostname = False
c.verify_mode = ssl.CERT_NONE
return c
return None
class Client:
def __init__(self, cfg):
self.cfg = cfg
self.base = str(cfg.get("server_url", "")).rstrip("/")
ctx = _ctx(cfg)
self.opener = urllib.request.build_opener(
urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar()),
urllib.request.HTTPSHandler(context=ctx) if ctx else urllib.request.HTTPSHandler(),
)
def login(self):
form = urllib.parse.urlencode({
"username": self.cfg.get("username", ""),
"password": self.cfg.get("password", ""),
}).encode("utf-8")
req = urllib.request.Request(self.base + "/login.html", data=form,
headers={"Content-Type": "application/x-www-form-urlencoded"}, method="POST")
with self.opener.open(req, timeout=60) as r:
r.read()
def call(self, method, path, body=None):
url = self.base + path
data = json.dumps(body).encode("utf-8") if body is not None else None
headers = {"Accept": "application/json"}
if data is not None:
headers["Content-Type"] = "application/json"
req = urllib.request.Request(url, data=data, headers=headers, method=method)
with self.opener.open(req, timeout=90) as r:
raw = r.read()
try:
return json.loads(raw) if raw else {}
except Exception:
return {"raw": raw.decode("utf-8", "replace")}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
client = Client(cfg)
client.login()
print(json.dumps(fn(client, 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(client, inputs):
client.call("POST", "/rest/sensors/query", {"limit": 1, "offset": 0, "filters": []})
return {"ok": True}
_run(main)
@@ -0,0 +1,86 @@
import json, os, sys, urllib.parse, urllib.request, urllib.error, http.cookiejar, ssl
def _cfg():
return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}"))
def _inputs():
return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}"))
def _ctx(cfg):
if cfg.get("insecure"):
c = ssl.create_default_context()
c.check_hostname = False
c.verify_mode = ssl.CERT_NONE
return c
return None
class Client:
def __init__(self, cfg):
self.cfg = cfg
self.base = str(cfg.get("server_url", "")).rstrip("/")
ctx = _ctx(cfg)
self.opener = urllib.request.build_opener(
urllib.request.HTTPCookieProcessor(http.cookiejar.CookieJar()),
urllib.request.HTTPSHandler(context=ctx) if ctx else urllib.request.HTTPSHandler(),
)
def login(self):
form = urllib.parse.urlencode({
"username": self.cfg.get("username", ""),
"password": self.cfg.get("password", ""),
}).encode("utf-8")
req = urllib.request.Request(self.base + "/login.html", data=form,
headers={"Content-Type": "application/x-www-form-urlencoded"}, method="POST")
with self.opener.open(req, timeout=60) as r:
r.read()
def call(self, method, path, body=None):
url = self.base + path
data = json.dumps(body).encode("utf-8") if body is not None else None
headers = {"Accept": "application/json"}
if data is not None:
headers["Content-Type"] = "application/json"
req = urllib.request.Request(url, data=data, headers=headers, method=method)
with self.opener.open(req, timeout=90) as r:
raw = r.read()
try:
return json.loads(raw) if raw else {}
except Exception:
return {"raw": raw.decode("utf-8", "replace")}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
client = Client(cfg)
client.login()
print(json.dumps(fn(client, 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(client, inputs):
sensor_ids = inputs.get("sensor_ids")
if not sensor_ids:
raise Exception("sensor_ids is required")
sensor_ids_list = [s.strip() for s in str(sensor_ids).split(",") if s.strip()]
if not sensor_ids_list:
raise Exception("sensor_ids is required")
resp = client.call("POST", "/rest/sensors/actions/unisolate", {"sensorsIds": sensor_ids_list})
if not resp:
return {"ok": True, "unisolated": sensor_ids_list}
return resp
_run(main)