Panther medium experimental python
Tracebit Alert
Tracebit maintains security canaries across your organization to detect potential intrusions. This alert indicates that Tracebit has detected activity on security canaries.
Detection Logic
def rule(event):
return event.deep_get("discriminator", "type") == "tracebit_alert_log"
def title(event):
return f"Tracebit: {event.get('message')}"
def dedup(event):
# Deduplicate alerts on the alert_id since there can be multiple alert logs for a single alert
return event.get("alert_id")
def reference(event):
# Reference the alert in the Tracebit portal to allow for easy investigation
return event.get("tracebit_portal_url")
def severity(event):
# Override the default alert severity if the alert log has a high severity
if event.get("severity") == "High":
return "HIGH"
return "DEFAULT"
def alert_context(event):
return event.get("canary", {}) Field Validations
Loading…
Comments (0)
Loading comments...