GSuite Government Backed Attack
Description
Detects Google Workspace warnings of government-backed attacks targeting user accounts, issued only when indicators match nation-state threat actors or APT groups. These sophisticated attacks target high-value individuals using advanced tactics including zero-day exploits, spear-phishing, and social engineering. Successful compromise can lead to persistent access, intellectual property theft, and supply chain attacks.
Query · python
def rule(event):
if event.deep_get("id", "applicationName") != "login":
return False
return bool(event.get("name") == "gov_attack_warning")
def title(event):
return (
f"User [{event.deep_get('actor', 'email', default='<UNKNOWN_EMAIL>')}] may have been "
f"targeted by a government attack"
)
Analyst notes
- Query GSuite.ActivityEvent logs for all login events, OAuth app authorizations, email forwarding rules, delegated access grants, and data exports by actor:email in the 90 days before this warning to identify suspicious activity indicating potential compromise
- Review login locations, IP addresses, and device information from the targeted user's recent authentication events to detect unusual geographic access patterns or impossible travel that may indicate reconnaissance or account takeover attempts
- Contact Google Workspace enterprise support to obtain additional threat intelligence about the government-backed attack including threat actor attribution, attack vectors observed, and specific indicators of compromise related to this incident