google_workspace_admin_role_assignment
Description
Identifies when an administrator role is assigned to a user account in Google Workspace. Security teams can monitor for the malicious or accidental assignment of administrator privileges to prevent unauthorized access to data.
Query · yara_l
events:
$ws.metadata.vendor_name = "Google Workspace"
$ws.metadata.product_name = "admin"
$ws.metadata.event_type = "USER_RESOURCE_UPDATE_PERMISSIONS"
$ws.metadata.product_event_type = "ASSIGN_ROLE"
$ws.security_result.category_details = "DELEGATED_ADMIN_SETTINGS"
outcome:
$risk_score = max(35 +
if($ws.target.resource.attribute.roles.name = "_SEED_ADMIN_ROLE", 50)
)
$mitre_attack_tactic = "Persistence"
$mitre_attack_technique = "Account Manipulation: Additional Cloud Roles"
$mitre_attack_technique_id = "T1098.003"
$event_count = count_distinct($ws.metadata.id)
$principal_ip = array_distinct($ws.principal.ip)
$principal_country = array_distinct($ws.principal.ip_geo_artifact.location.country_or_region)
$principal_state = array_distinct($ws.principal.ip_geo_artifact.location.state)
$principal_user_emails = array_distinct($ws.principal.user.email_addresses)
$target_user_emails = array_distinct($ws.target.user.email_addresses)
$principal_user_id = $ws.principal.user.userid
$role_name = array_distinct($ws.target.resource.attribute.roles.name)
condition:
$ws