Anthropic Primary Owner Transferred
Description
Detects when the primary owner role of the Anthropic organization is transferred to another member. This is an extremely high-privilege action that gives full control of the organization. The previous_owner_id and new_owner_id fields identify who gave up and received ownership.
Query · python
from panther_anthropic_helpers import anthropic_actor_id, anthropic_alert_context
def rule(event):
return event.get("type") == "primary_owner_transferred"
def title(event):
actor_email = anthropic_actor_id(event)
return f"Anthropic: Primary owner transferred by [{actor_email}]"
def dedup(event):
return anthropic_actor_id(event)
def alert_context(event):
return anthropic_alert_context(event)
Analyst notes
- Find all Anthropic.Activity events by actor:email_address in the 24 hours before the alert to identify any suspicious activity leading up to the ownership transfer
- Check if actor:ip_address matches previously seen IP addresses for this actor in the past 30 days to detect potential account compromise
- Find all alerts for actor:email_address in the past 7 days to check for signs of account compromise preceding this action