Panther informational experimental python
Databricks Terms of Service Changes
Detects Terms of Service acceptance or distribution events for compliance tracking. These events should be monitored for audit and governance purposes.
Detection Logic
from panther_databricks_helpers import databricks_alert_context
def rule(event):
return event.get("actionName") in ["acceptTos", "sendTos"]
def title(event):
action = event.get("actionName", "Unknown Action")
actor = event.deep_get("userIdentity", "email", default="Unknown Actor")
if action == "acceptTos":
return f"Terms of Service accepted by {actor}"
return f"Terms of Service distributed by {actor}"
def alert_context(event):
return databricks_alert_context(event) Field Validations
Loading…
Comments (0)
Loading comments...