Panther high experimental python
Anthropic IP Restriction Deleted
Detects when an organization IP restriction is deleted. IP restrictions are a critical network-level access control — removing them allows access from any IP address, which could indicate an attacker widening the attack surface after gaining admin access.
Detection Logic
from panther_anthropic_helpers import anthropic_actor_id, anthropic_alert_context
def rule(event):
return event.get("type") == "org_ip_restriction_deleted"
def title(event):
actor_email = anthropic_actor_id(event)
return f"Anthropic: IP restriction deleted by [{actor_email}]"
def dedup(event):
return anthropic_actor_id(event)
def alert_context(event):
return anthropic_alert_context(event) Field Validations
Loading…
Comments (0)
Loading comments...