google_workspace_file_shared_from_google_drive_to_free_email_domain
Description
Identifies when a user shares a file on Google Drive with a free email domain, which may indicate data exfiltration.
Query · yara_l
events:
$ws.metadata.vendor_name = "Google Workspace"
$ws.metadata.product_name = "drive"
(
$ws.metadata.product_event_type = "change_user_access" or
$ws.metadata.product_event_type = "change_document_visibility" or
$ws.metadata.product_event_type = "change_document_access_scope" or
$ws.metadata.product_event_type = "change_acl_editors"
)
// File shared externally with free email domains
$ws.target.resource.attribute.labels["visibility"] = "shared_externally"
$ws.target.user.email_addresses = /.*@gmail\.com|.*@aol\.com|.*@ymail\.com|.*@ymail\.com|.*@hotmail\.com|.*@outlook\.com|.*@icloud\.com/
outcome:
$risk_score = max(75)
$mitre_attack_tactic = "Exfiltration"
$mitre_attack_technique = "Exfiltration Over Web Service"
$mitre_attack_technique_id = "T1567"
$event_count = count_distinct($ws.metadata.id)
$product_event_type = array_distinct($ws.metadata.product_event_type)
$userid = array_distinct($ws.principal.user.userid)
$doc_type = array_distinct($ws.src.resource.attribute.labels["doc_type"])
$owner = array_distinct($ws.target.resource.attribute.labels["owner"])
$target_emails = array_distinct($ws.target.user.email_addresses)
$doc_name = array_distinct($ws.target.resource.name)
$doc_id = array_distinct($ws.target.resource.product_object_id)
condition:
$ws