feat(prisma-cloud): new Prisma Cloud CSPM integration

Prisma Cloud REST API, 7 commands: list/get alerts, dismiss alerts, list
policies, list cloud accounts, config (RQL) search. Access-key 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:53:01 +02:00
parent a567558341
commit 52356523c9
8 changed files with 640 additions and 0 deletions
+97
View File
@@ -0,0 +1,97 @@
id: prisma_cloud
name: Prisma Cloud
version: 1.0.0
description: "Palo Alto Prisma Cloud (CSPM REST API) — cloud posture: list and read alerts, dismiss alerts, list policies and cloud accounts, and run a config (RQL) search. Access-key login authentication; stdlib-only, no extra Python dependencies."
changelog: "1.0.0 — Initial release: list/get alerts, dismiss alerts, list policies, list cloud accounts, config search."
category: cloud
# Per-instance configuration. Each command logs in with the access key ID +
# secret key to obtain a JWT (sent as the 'x-redlock-auth' header).
config_schema:
properties:
api_url:
type: string
description: "Prisma Cloud API URL (e.g. https://api.prismacloud.io)"
username:
type: string
description: "Access Key ID"
password:
type: string
description: "Secret Key"
x-soar-sensitive: true
insecure:
type: boolean
description: "Trust any TLS certificate (not secure)"
default: false
required:
- api_url
- username
- password
commands:
- id: list_alerts
name: prisma-list-alerts
description: "List alerts in a relative time window."
risk: read
inputs_schema:
properties:
time_amount: { type: number, description: "Look-back amount (default 24)" }
time_unit: { type: string, description: "hour, day, week, month, or year (default hour)" }
status: { type: string, description: "Optional status filter (open, resolved, dismissed)" }
required: []
outputs_schema: { properties: {} }
- id: get_alert
name: prisma-get-alert
description: "Get a single alert by ID."
risk: read
inputs_schema:
properties:
alert_id: { type: string, description: "Alert ID" }
required: [alert_id]
outputs_schema: { properties: {} }
- id: dismiss_alerts
name: prisma-dismiss-alerts
description: "Dismiss one or more alerts with a note."
inputs_schema:
properties:
alert_ids: { type: string, description: "Comma-separated alert IDs" }
note: { type: string, description: "Dismissal note" }
required: [alert_ids]
outputs_schema: { properties: {} }
- id: list_policies
name: prisma-list-policies
description: "List policies."
risk: read
inputs_schema:
properties:
policy_type: { type: string, description: "Optional type filter (config, network, audit_event, ...)" }
required: []
outputs_schema: { properties: {} }
- id: list_cloud_accounts
name: prisma-list-cloud-accounts
description: "List onboarded cloud accounts."
risk: read
inputs_schema:
properties: {}
required: []
outputs_schema: { properties: {} }
- id: config_search
name: prisma-config-search
description: "Run a config (RQL) search."
risk: read
inputs_schema:
properties:
query: { type: string, description: "RQL query (e.g. config from cloud.resource where ...)" }
time_amount: { type: number, description: "Look-back amount (default 24)" }
time_unit: { type: string, description: "hour, day, week, month (default hour)" }
required: [query]
outputs_schema: { properties: {} }
- id: test_connection
name: prisma-test-connection
description: "Verify connectivity and credentials by logging in (used by the Test button)."
risk: read
inputs_schema:
properties: {}
required: []
outputs_schema: { properties: {} }
@@ -0,0 +1,86 @@
import json, os, sys, ssl, 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 _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
def _base(cfg):
return str(cfg.get("api_url", "")).rstrip("/")
def _login(cfg):
body = json.dumps({"username": cfg.get("username", ""), "password": cfg.get("password", "")}).encode("utf-8")
req = urllib.request.Request(_base(cfg) + "/login", data=body,
headers={"Content-Type": "application/json", "Accept": "application/json"}, method="POST")
with urllib.request.urlopen(req, timeout=60, context=_ctx(cfg)) as r:
tok = json.loads(r.read())
if not tok.get("token"):
raise Exception("Login failed: " + json.dumps(tok))
return tok["token"]
def request(method, path, cfg, token, 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 = {"x-redlock-auth": token, "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=90, context=_ctx(cfg)) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
token = _login(cfg)
print(json.dumps(fn(cfg, token, 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, token, inputs):
query = inputs.get("query")
if not query:
raise Exception("query is required")
time_amount = inputs.get("time_amount")
time_unit = inputs.get("time_unit")
return request("POST", "/search/config", cfg, token, body={
"query": query,
"timeRange": {
"type": "relative",
"value": {
"amount": int(time_amount or 24),
"unit": (time_unit or "hour"),
},
},
})
_run(main)
@@ -0,0 +1,87 @@
import json, os, sys, ssl, 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 _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
def _base(cfg):
return str(cfg.get("api_url", "")).rstrip("/")
def _login(cfg):
body = json.dumps({"username": cfg.get("username", ""), "password": cfg.get("password", "")}).encode("utf-8")
req = urllib.request.Request(_base(cfg) + "/login", data=body,
headers={"Content-Type": "application/json", "Accept": "application/json"}, method="POST")
with urllib.request.urlopen(req, timeout=60, context=_ctx(cfg)) as r:
tok = json.loads(r.read())
if not tok.get("token"):
raise Exception("Login failed: " + json.dumps(tok))
return tok["token"]
def request(method, path, cfg, token, 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 = {"x-redlock-auth": token, "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=90, context=_ctx(cfg)) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
token = _login(cfg)
print(json.dumps(fn(cfg, token, 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, token, inputs):
alert_ids = inputs.get("alert_ids")
if not alert_ids:
raise Exception("alert_ids is required")
alert_ids_list = [s.strip() for s in str(alert_ids).split(",") if s.strip()]
if not alert_ids_list:
raise Exception("alert_ids is required")
note = inputs.get("note")
resp = request("POST", "/alert/dismiss", cfg, token, body={
"alerts": alert_ids_list,
"dismissalNote": (note or "Dismissed via Riposte"),
})
if not resp:
return {"ok": True, "dismissed": alert_ids_list}
return resp
_run(main)
@@ -0,0 +1,75 @@
import json, os, sys, ssl, 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 _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
def _base(cfg):
return str(cfg.get("api_url", "")).rstrip("/")
def _login(cfg):
body = json.dumps({"username": cfg.get("username", ""), "password": cfg.get("password", "")}).encode("utf-8")
req = urllib.request.Request(_base(cfg) + "/login", data=body,
headers={"Content-Type": "application/json", "Accept": "application/json"}, method="POST")
with urllib.request.urlopen(req, timeout=60, context=_ctx(cfg)) as r:
tok = json.loads(r.read())
if not tok.get("token"):
raise Exception("Login failed: " + json.dumps(tok))
return tok["token"]
def request(method, path, cfg, token, 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 = {"x-redlock-auth": token, "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=90, context=_ctx(cfg)) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
token = _login(cfg)
print(json.dumps(fn(cfg, token, 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, token, inputs):
alert_id = inputs.get("alert_id")
if not alert_id:
raise Exception("alert_id is required")
q = lambda v: urllib.parse.quote(str(v), safe="")
return request("GET", "/alert/" + q(alert_id), cfg, token)
_run(main)
@@ -0,0 +1,83 @@
import json, os, sys, ssl, 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 _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
def _base(cfg):
return str(cfg.get("api_url", "")).rstrip("/")
def _login(cfg):
body = json.dumps({"username": cfg.get("username", ""), "password": cfg.get("password", "")}).encode("utf-8")
req = urllib.request.Request(_base(cfg) + "/login", data=body,
headers={"Content-Type": "application/json", "Accept": "application/json"}, method="POST")
with urllib.request.urlopen(req, timeout=60, context=_ctx(cfg)) as r:
tok = json.loads(r.read())
if not tok.get("token"):
raise Exception("Login failed: " + json.dumps(tok))
return tok["token"]
def request(method, path, cfg, token, 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 = {"x-redlock-auth": token, "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=90, context=_ctx(cfg)) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
token = _login(cfg)
print(json.dumps(fn(cfg, token, 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, token, inputs):
time_amount = inputs.get("time_amount")
time_unit = inputs.get("time_unit")
status = inputs.get("status")
params = {
"timeType": "relative",
"timeAmount": int(time_amount or 24),
"timeUnit": (time_unit or "hour"),
"detailed": "true",
}
if status:
params["alert.status"] = status
return request("GET", "/alert", cfg, token, params=params)
_run(main)
@@ -0,0 +1,70 @@
import json, os, sys, ssl, 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 _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
def _base(cfg):
return str(cfg.get("api_url", "")).rstrip("/")
def _login(cfg):
body = json.dumps({"username": cfg.get("username", ""), "password": cfg.get("password", "")}).encode("utf-8")
req = urllib.request.Request(_base(cfg) + "/login", data=body,
headers={"Content-Type": "application/json", "Accept": "application/json"}, method="POST")
with urllib.request.urlopen(req, timeout=60, context=_ctx(cfg)) as r:
tok = json.loads(r.read())
if not tok.get("token"):
raise Exception("Login failed: " + json.dumps(tok))
return tok["token"]
def request(method, path, cfg, token, 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 = {"x-redlock-auth": token, "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=90, context=_ctx(cfg)) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
token = _login(cfg)
print(json.dumps(fn(cfg, token, 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, token, inputs):
return request("GET", "/cloud", cfg, token)
_run(main)
@@ -0,0 +1,71 @@
import json, os, sys, ssl, 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 _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
def _base(cfg):
return str(cfg.get("api_url", "")).rstrip("/")
def _login(cfg):
body = json.dumps({"username": cfg.get("username", ""), "password": cfg.get("password", "")}).encode("utf-8")
req = urllib.request.Request(_base(cfg) + "/login", data=body,
headers={"Content-Type": "application/json", "Accept": "application/json"}, method="POST")
with urllib.request.urlopen(req, timeout=60, context=_ctx(cfg)) as r:
tok = json.loads(r.read())
if not tok.get("token"):
raise Exception("Login failed: " + json.dumps(tok))
return tok["token"]
def request(method, path, cfg, token, 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 = {"x-redlock-auth": token, "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=90, context=_ctx(cfg)) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
token = _login(cfg)
print(json.dumps(fn(cfg, token, 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, token, inputs):
policy_type = inputs.get("policy_type")
return request("GET", "/policy", cfg, token, params={"policy.type": policy_type})
_run(main)
@@ -0,0 +1,71 @@
import json, os, sys, ssl, 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 _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
def _base(cfg):
return str(cfg.get("api_url", "")).rstrip("/")
def _login(cfg):
body = json.dumps({"username": cfg.get("username", ""), "password": cfg.get("password", "")}).encode("utf-8")
req = urllib.request.Request(_base(cfg) + "/login", data=body,
headers={"Content-Type": "application/json", "Accept": "application/json"}, method="POST")
with urllib.request.urlopen(req, timeout=60, context=_ctx(cfg)) as r:
tok = json.loads(r.read())
if not tok.get("token"):
raise Exception("Login failed: " + json.dumps(tok))
return tok["token"]
def request(method, path, cfg, token, 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 = {"x-redlock-auth": token, "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=90, context=_ctx(cfg)) as r:
raw = r.read()
return json.loads(raw) if raw else {}
def _run(fn):
try:
cfg = _cfg()
inputs = _inputs()
token = _login(cfg)
print(json.dumps(fn(cfg, token, 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, token, inputs):
request("GET", "/cloud", cfg, token)
return {"ok": True}
_run(main)