Panther high experimental python

Panther SAML configuration has been modified

An Admin has modified Panther's SAML configuration.

View Source

Detection Logic

def rule(event):
    return (
        event.get("actionName") == "UPDATE_SAML_SETTINGS"
        and event.get("actionResult") == "SUCCEEDED"
    )


def title(event):
    return f"Panther SAML config has been modified by {event.udm('actor_user')}"


def alert_context(event):
    return {
        "user": event.udm("actor_user"),
        "ip": event.udm("source_ip"),
    }

Field Validations

Loading…

Comments (0)

Loading comments...