diff --git a/integrations/cisco-secure-endpoint/manifest.yaml b/integrations/cisco-secure-endpoint/manifest.yaml new file mode 100644 index 0000000..c76be35 --- /dev/null +++ b/integrations/cisco-secure-endpoint/manifest.yaml @@ -0,0 +1,90 @@ +id: cisco_secure_endpoint +name: Cisco Secure Endpoint +version: 1.0.0 +description: "Cisco Secure Endpoint (AMP for Endpoints API v1) — endpoint containment: list and read computers, isolate/unisolate a host, list events, and read a computer's trajectory. HTTP Basic authentication; stdlib-only, no extra Python dependencies." +changelog: "1.0.0 — Initial release: list/get computers, isolate/stop-isolation, list events, get trajectory." +category: endpoint + +# Per-instance configuration. HTTP Basic auth with the API client ID + key. +config_schema: + properties: + base_url: + type: string + description: "AMP API host (region-specific)" + default: "https://api.amp.cisco.com" + client_id: + type: string + description: "API client ID" + api_key: + type: string + description: "API key" + x-soar-sensitive: true + required: + - client_id + - api_key + +commands: + - id: list_computers + name: cisco-amp-list-computers + description: "List computers (endpoints)." + risk: read + inputs_schema: + properties: + hostname: { type: string, description: "Optional hostname filter" } + limit: { type: number, description: "Max computers (default 50)" } + required: [] + outputs_schema: { properties: {} } + - id: get_computer + name: cisco-amp-get-computer + description: "Get a single computer by connector GUID." + risk: read + inputs_schema: + properties: + connector_guid: { type: string, description: "Connector GUID" } + required: [connector_guid] + outputs_schema: { properties: {} } + - id: isolate_computer + name: cisco-amp-isolate-computer + description: "Isolate a computer from the network (containment)." + inputs_schema: + properties: + connector_guid: { type: string, description: "Connector GUID" } + comment: { type: string, description: "Optional isolation comment" } + required: [connector_guid] + outputs_schema: { properties: {} } + - id: stop_isolation + name: cisco-amp-stop-isolation + description: "Stop isolation on a computer." + inputs_schema: + properties: + connector_guid: { type: string, description: "Connector GUID" } + required: [connector_guid] + outputs_schema: { properties: {} } + - id: list_events + name: cisco-amp-list-events + description: "List events." + risk: read + inputs_schema: + properties: + connector_guid: { type: string, description: "Optional connector GUID filter" } + limit: { type: number, description: "Max events (default 50)" } + required: [] + outputs_schema: { properties: {} } + - id: get_trajectory + name: cisco-amp-get-trajectory + description: "Get a computer's device trajectory." + risk: read + inputs_schema: + properties: + connector_guid: { type: string, description: "Connector GUID" } + required: [connector_guid] + outputs_schema: { properties: {} } + + - id: test_connection + name: cisco-amp-test-connection + description: "Verify connectivity and credentials (used by the Test button)." + risk: read + inputs_schema: + properties: {} + required: [] + outputs_schema: { properties: {} } diff --git a/integrations/cisco-secure-endpoint/scripts/get_computer.py b/integrations/cisco-secure-endpoint/scripts/get_computer.py new file mode 100644 index 0000000..4ce2795 --- /dev/null +++ b/integrations/cisco-secure-endpoint/scripts/get_computer.py @@ -0,0 +1,58 @@ +import json, os, sys, base64, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def _base(cfg): + return (str(cfg.get("base_url") or "https://api.amp.cisco.com")).rstrip("/") + "/v1" + + +def _auth(cfg): + raw = str(cfg.get("client_id", "")) + ":" + str(cfg.get("api_key", "")) + return "Basic " + base64.b64encode(raw.encode("utf-8")).decode("utf-8") + + +def request(method, path, cfg, body=None, params=None): + url = _base(cfg) + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = {"Authorization": _auth(cfg), "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 urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +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) + + +q = lambda v: urllib.parse.quote(str(v), safe="") + + +def main(cfg, inputs): + connector_guid = inputs.get("connector_guid") + if not connector_guid: + raise Exception("connector_guid is required") + return request("GET", "/computers/" + q(connector_guid), cfg) + + +_run(main) diff --git a/integrations/cisco-secure-endpoint/scripts/get_trajectory.py b/integrations/cisco-secure-endpoint/scripts/get_trajectory.py new file mode 100644 index 0000000..ea3209b --- /dev/null +++ b/integrations/cisco-secure-endpoint/scripts/get_trajectory.py @@ -0,0 +1,58 @@ +import json, os, sys, base64, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def _base(cfg): + return (str(cfg.get("base_url") or "https://api.amp.cisco.com")).rstrip("/") + "/v1" + + +def _auth(cfg): + raw = str(cfg.get("client_id", "")) + ":" + str(cfg.get("api_key", "")) + return "Basic " + base64.b64encode(raw.encode("utf-8")).decode("utf-8") + + +def request(method, path, cfg, body=None, params=None): + url = _base(cfg) + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = {"Authorization": _auth(cfg), "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 urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +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) + + +q = lambda v: urllib.parse.quote(str(v), safe="") + + +def main(cfg, inputs): + connector_guid = inputs.get("connector_guid") + if not connector_guid: + raise Exception("connector_guid is required") + return request("GET", "/computers/" + q(connector_guid) + "/trajectory", cfg) + + +_run(main) diff --git a/integrations/cisco-secure-endpoint/scripts/isolate_computer.py b/integrations/cisco-secure-endpoint/scripts/isolate_computer.py new file mode 100644 index 0000000..2c7a110 --- /dev/null +++ b/integrations/cisco-secure-endpoint/scripts/isolate_computer.py @@ -0,0 +1,64 @@ +import json, os, sys, base64, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def _base(cfg): + return (str(cfg.get("base_url") or "https://api.amp.cisco.com")).rstrip("/") + "/v1" + + +def _auth(cfg): + raw = str(cfg.get("client_id", "")) + ":" + str(cfg.get("api_key", "")) + return "Basic " + base64.b64encode(raw.encode("utf-8")).decode("utf-8") + + +def request(method, path, cfg, body=None, params=None): + url = _base(cfg) + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = {"Authorization": _auth(cfg), "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 urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +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) + + +q = lambda v: urllib.parse.quote(str(v), safe="") + + +def main(cfg, inputs): + connector_guid = inputs.get("connector_guid") + if not connector_guid: + raise Exception("connector_guid is required") + comment = inputs.get("comment") + return request( + "PUT", + "/computers/" + q(connector_guid) + "/isolation", + cfg, + body=({"comment": comment} if comment else {}), + ) + + +_run(main) diff --git a/integrations/cisco-secure-endpoint/scripts/list_computers.py b/integrations/cisco-secure-endpoint/scripts/list_computers.py new file mode 100644 index 0000000..be87190 --- /dev/null +++ b/integrations/cisco-secure-endpoint/scripts/list_computers.py @@ -0,0 +1,59 @@ +import json, os, sys, base64, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def _base(cfg): + return (str(cfg.get("base_url") or "https://api.amp.cisco.com")).rstrip("/") + "/v1" + + +def _auth(cfg): + raw = str(cfg.get("client_id", "")) + ":" + str(cfg.get("api_key", "")) + return "Basic " + base64.b64encode(raw.encode("utf-8")).decode("utf-8") + + +def request(method, path, cfg, body=None, params=None): + url = _base(cfg) + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = {"Authorization": _auth(cfg), "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 urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +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): + hostname = inputs.get("hostname") + limit = inputs.get("limit") + return request( + "GET", + "/computers", + cfg, + params={"hostname[]": hostname, "limit": int(limit or 50)}, + ) + + +_run(main) diff --git a/integrations/cisco-secure-endpoint/scripts/list_events.py b/integrations/cisco-secure-endpoint/scripts/list_events.py new file mode 100644 index 0000000..82e049e --- /dev/null +++ b/integrations/cisco-secure-endpoint/scripts/list_events.py @@ -0,0 +1,59 @@ +import json, os, sys, base64, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def _base(cfg): + return (str(cfg.get("base_url") or "https://api.amp.cisco.com")).rstrip("/") + "/v1" + + +def _auth(cfg): + raw = str(cfg.get("client_id", "")) + ":" + str(cfg.get("api_key", "")) + return "Basic " + base64.b64encode(raw.encode("utf-8")).decode("utf-8") + + +def request(method, path, cfg, body=None, params=None): + url = _base(cfg) + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = {"Authorization": _auth(cfg), "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 urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +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): + connector_guid = inputs.get("connector_guid") + limit = inputs.get("limit") + return request( + "GET", + "/events", + cfg, + params={"connector_guid[]": connector_guid, "limit": int(limit or 50)}, + ) + + +_run(main) diff --git a/integrations/cisco-secure-endpoint/scripts/stop_isolation.py b/integrations/cisco-secure-endpoint/scripts/stop_isolation.py new file mode 100644 index 0000000..4fff423 --- /dev/null +++ b/integrations/cisco-secure-endpoint/scripts/stop_isolation.py @@ -0,0 +1,58 @@ +import json, os, sys, base64, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def _base(cfg): + return (str(cfg.get("base_url") or "https://api.amp.cisco.com")).rstrip("/") + "/v1" + + +def _auth(cfg): + raw = str(cfg.get("client_id", "")) + ":" + str(cfg.get("api_key", "")) + return "Basic " + base64.b64encode(raw.encode("utf-8")).decode("utf-8") + + +def request(method, path, cfg, body=None, params=None): + url = _base(cfg) + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = {"Authorization": _auth(cfg), "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 urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +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) + + +q = lambda v: urllib.parse.quote(str(v), safe="") + + +def main(cfg, inputs): + connector_guid = inputs.get("connector_guid") + if not connector_guid: + raise Exception("connector_guid is required") + return request("DELETE", "/computers/" + q(connector_guid) + "/isolation", cfg) + + +_run(main) diff --git a/integrations/cisco-secure-endpoint/scripts/test_connection.py b/integrations/cisco-secure-endpoint/scripts/test_connection.py new file mode 100644 index 0000000..200631d --- /dev/null +++ b/integrations/cisco-secure-endpoint/scripts/test_connection.py @@ -0,0 +1,53 @@ +import json, os, sys, base64, urllib.parse, urllib.request, urllib.error + + +def _cfg(): + return json.loads(os.environ.get("INTEGRATION_SECRETS", "{}")) + + +def _inputs(): + return json.loads(os.environ.get("INTEGRATION_INPUTS", "{}")) + + +def _base(cfg): + return (str(cfg.get("base_url") or "https://api.amp.cisco.com")).rstrip("/") + "/v1" + + +def _auth(cfg): + raw = str(cfg.get("client_id", "")) + ":" + str(cfg.get("api_key", "")) + return "Basic " + base64.b64encode(raw.encode("utf-8")).decode("utf-8") + + +def request(method, path, cfg, body=None, params=None): + url = _base(cfg) + path + if params: + clean = {k: v for k, v in params.items() if v not in (None, "")} + if clean: + url += "?" + urllib.parse.urlencode(clean) + data = json.dumps(body).encode("utf-8") if body is not None else None + headers = {"Authorization": _auth(cfg), "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 urllib.request.urlopen(req, timeout=60) as r: + raw = r.read() + return json.loads(raw) if raw else {} + + +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): + request("GET", "/version", cfg) + return {"ok": True} + + +_run(main)