Anthropic Organization Member and Group Enumeration
Description
Detects a single user performing at least two distinct organization discovery actions within a 10-minute window: listing users, exporting members, or viewing groups. Chaining these read actions maps membership and group structure and commonly precedes targeted role grants, invites, or data collection against high-value accounts.
Query · esql
from logs-anthropic.audit-*
| where
data_stream.dataset == "anthropic.audit" and
event.action in ("org_members_exported", "org_users_listed", "group_list_viewed") and
user.email is not null
| stats
Esql.event_action_count_distinct = count_distinct(event.action),
Esql.event_action_values = values(event.action),
Esql.event_count = count(*),
Esql.event_id_values = values(event.id),
Esql.source_ip_values = values(source.ip),
Esql.user_agent_original_values = values(user_agent.original),
Esql.anthropic_audit_actor_type_values = values(anthropic.audit.actor.type),
Esql.user_id_values = values(user.id),
Esql.timestamp_first_seen = min(@timestamp),
Esql.timestamp_last_seen = max(@timestamp)
by user.email, organization.id
| where Esql.event_action_count_distinct >= 2
| keep user.email, organization.id, Esql.*
Investigation fields
Pivot points the source recommends for triage.
user.emailorganization.idEsql.event_action_count_distinctEsql.event_action_valuesEsql.event_countEsql.event_id_valuesEsql.source_ip_valuesEsql.user_agent_original_valuesEsql.anthropic_audit_actor_type_valuesEsql.user_id_valuesEsql.timestamp_first_seenEsql.timestamp_last_seen
Known false positives
- Organization administrators, identity teams, and compliance reviewers may list users, export members, and view groups during audits, access reviews, or offboarding. Confirm the actor and change ticket before escalating.
Analyst notes
Investigating Anthropic Organization Member and Group Enumeration
One email performed at least two distinct discovery actions among org_users_listed, org_members_exported, and
group_list_viewed in a short window — reconnaissance of who is in the tenant.
Escalate when scripting UA, follow-on invites/role grants/SSO changes/exports appear, or the actor is not an identity admin. Close as FP for scheduled access reviews or onboarding console browsing with a ticket.
Possible investigation steps
- Read
Esql.event_action_valuesto see which discovery actions combined; all three in one window is stronger than two. - Inspect IP/UA/actor type for automation or unfamiliar clients.
- Pivot the same actor/org for follow-on admin or project role grants, invites, SSO changes, or data exports.
- Note: some
org_members_exportedwithout user email (e.g. certainanthropic_actorcases) are out of scope.
False positive analysis
- Membership exports during access reviews commonly combine two of these actions briefly.
Response and remediation
- On unauthorized recon: revoke sessions, review recent role and invite changes, and tighten least privilege on identity read actions where possible.