Skip to main content

May 19, 2026

How to Build AI Defenses Against Fake Google Security Alerts

Fake Google security alerts pass SPF, DKIM, and DMARC by abusing real infrastructure. Learn which behavioral signals actually detect them.

Key Insights

Phishing sent via Google's own infrastructure passes SPF, DKIM, and DMARC checks by design, rendering email authentication ineffective.

AiTM kits like Tycoon2FA steal post-MFA session cookies, bypassing TOTP-based authentication entirely.

A valid DKIM signature loses trust value when the email arrives through unexpected third-party relays, making routing anomalies a key risk signal.

DMARC at p=reject protects your domain from spoofing but offers no defense against inbound abuse of already-authenticated domains like google.com.

Threats that evolve via payload-switching or redirect chains may only emerge post-delivery, making after-delivery remediation essential.

An employee opens an email that appears to be from Google, warning that someone in another country has just signed in to their corporate account. It lands in the same Gmail thread as previous, legitimate alerts. The sender domain checks out, and the link points to a Google-owned page. The employee clicks "secure your account," enters their credentials, and approves the MFA prompt. By the time the security team notices, an attacker is already reading the inbox and quietly forwarding invoices to an external address.

This is the trap enterprises now face with fake Google security alerts. The messages originate from Google's own infrastructure, so every authentication check, reputation lookup, and signature validation confirms exactly what the attacker wants. Traditional defenses are left with nothing obvious to flag.

The fix lies in changing what you look at. Just as a sharp-eyed receptionist might notice an "employee" heading toward a department they have never visited or arriving at an odd hour, security teams need to look past the credentials and focus on behavior. The real challenge is spotting messages that look authentic at the protocol layer but break the patterns of how legitimate communication actually flows.

Key Takeaways

  • Fake Google security alerts can pass SPF, DKIM, and DMARC because attackers send them through Google's own authorized infrastructure, not by spoofing it.

  • Traditional secure email gateways (SEGs) often struggle to detect these attacks because every reputation and authentication signal confirms the message as legitimate.

  • Behavioral detection asks whether an email is consistent with known sender and recipient patterns.

  • Routing path analysis, communication cadence, sender relationship history, and contextual trigger verification are the primary signals that authentication protocols do not produce.

How Attackers Forge Fake Google Security Alerts That Pass Authentication

Fake Google security alerts pass authentication checks because attackers abuse trusted Google-controlled systems rather than spoof them. The four techniques below exploit a different layer of Google's ecosystem to deliver phishing that looks indistinguishable from legitimate alerts.

1. Abusing Google's Own Sending Infrastructure

Attackers send phishing emails through legitimate Google services, including Google Cloud Application Integration, Google Sites, Google Drive sharing notifications, and Google Docs comment notifications. Because the email originates from Google's authorized mail servers, SPF, DKIM, and DMARC all pass by design. No spoofing occurs.

A documented campaign abused a Google Cloud email notification feature to target organizations across manufacturing, technology, financial, professional services, retail, media, education, healthcare, energy, government, and transportation sectors.

2. Replaying Google's Own Cryptographic Signature

A more advanced variation exploited how Google's OAuth application notification system interacts with DKIM to deliver phishing emails bearing Google's own cryptographic signature. The attack chain works as follows:

  • The attacker creates a Google OAuth application and embeds the phishing email body in the application's name field.
  • Google's own systems generate a legitimate notification email about this application, signed with Google's DKIM key.
  • The signed message is forwarded through Outlook, a third-party SMTP relay, and Namecheap PrivateEmail to the victim's inbox.
  • SPF, DKIM, and DMARC all pass at delivery.
  • Gmail displays the phishing email in the same conversation thread as genuine Google security alerts.
  • The phishing landing page sits on sites.google.com, a legitimate Google subdomain.

3. Stealing Sessions Through Proxy-Based Phishing

Proxy-based phishing can capture authenticated sessions even when users complete MFA. Adversary-in-the-middle (AiTM) phishing kits like Tycoon2FA and Starkiller sit between the victim and the real login page, targeting services including both Microsoft 365 and Gmail accounts.

The victim completes the full authentication flow, including MFA, but the proxy captures the authenticated session cookie. These platforms use server-side geolocation checks to serve benign content to security scanners while showing phishing pages to targeted users.

4. Weaponizing AI Assistants via Prompt Injection

AI features can also be manipulated to create convincing security lures. A researcher at Mozilla's 0din bug bounty program demonstrated that a crafted email containing hidden instructions could cause Google Gemini's email summarization feature to generate a fake security alert directing the user to a phishing resource. The email itself contained no links, no attachments, and no scannable artifacts.

Why Legacy Defenses Often Struggle with Google-Branded Phishing

Google-branded phishing often looks legitimate to controls that prioritize sender authenticity, reputation, and delivery-time inspection.

Authentication Protocols Confirm Legitimacy by Design

SPF, DKIM, and DMARC were designed to prevent unauthorized parties from spoofing domains. They were not designed to detect abuse of legitimate sending infrastructure.

The DKIM replay attack shows the limitation clearly: a validly signed message replayed in a new context still carries a valid signature. The authentication check passes, but the message is fraudulent. That reflects a structural limitation rather than a simple misconfiguration.

Domain Reputation Scoring Works Against Defenders

High-trust domain reputation can protect against phishing activity when attackers operate on infrastructure that organizations rely on every day. SEG reputation systems assign high trust scores to infrastructure that generates large volumes of legitimate traffic.

Google's domain carry some of the highest reputation scores on the internet. Blocking google.com and its subdomains would terminate legitimate business communications across Google Workspace, Docs, Calendar, and Drive. The attacker's use of Google infrastructure is shielded by the same business dependencies that make blocking impractical.

One documented phishing operation ran undetected on Google and Cloudflare infrastructure using split-path evasion. The root domains showed a gambling page, while phishing pages were accessible only at specific URL paths that automated scanners never evaluated.

Single-Point URL Inspection Creates a Predictable Gap

Delivery-time URL inspection can miss payloads that change after the message arrives. Attackers exploit this by serving benign content at scan time and switching payloads after delivery, or by constructing redirect chains that pass through legitimate intermediate domains like Google's AMP Cache at cdn.ampproject.org. By the time a user clicks, the destination has changed.

Behavioral Signals That Separate Fake Google Security Alerts from Real Ones

Behavioral signals expose fake Google alerts that authentication checks confirm as legitimate. Four categories discussed below give security teams a way to distinguish a real Google notification from a convincing fake, even when every protocol-level check passes.

1. Routing Path and Infrastructure Consistency

Routing behavior can expose fake Google alerts even when authentication passes. Google security alerts are associated with security notifications and Gmail security alerts, while the DKIM replay attack used a routing path through Outlook, a third-party SMTP service, and Namecheap's PrivateEmail.

That relay chain is inconsistent with the claimed sender context. Detection models can treat routing path consistency and authentication status as separate signal categories, so a valid DKIM signature on an unexpected relay chain raises risk rather than lowering it.

2. Communication Cadence and Relationship History

Sending patterns and recipient history can reveal fake Google alerts that look polished and technically valid. Google sends security notifications for important account actions and suspicious activity. A sending pattern delivering the same security alert template to large numbers of recipients within a compressed time window, with no corresponding account events in organizational identity logs, is a cadence anomaly that content analysis alone may miss.

Relationship graph mapping adds another dimension. If a recipient has no prior history of receiving security notifications from a specific sender address, or if the notification frequency deviates from the recipient's established baseline, the message is contextually suspicious regardless of the sender's display name or domain authentication status.

3. Reply-To Field and Metadata Integrity

Message metadata can reveal phishing intent even when branding looks correct. Reply-to mismatches represent a distinct detection signal category within phishing detection. Similarly, header metadata, including relay hop count, message routing identifiers, and envelope sender information, can be compared against established baselines for the claimed sender.

4. Intent Analysis Beyond Keyword Matching

Intent analysis can surface phishing pressure that polished language is designed to hide. AI-generated phishing content is specifically designed to defeat keyword-based content filters by producing structurally correct, professional language.

Natural language understanding (NLU) analysis addresses this by evaluating whether a message is attempting to induce credential submission, independent of surface-level formatting or domain reputation. Natural language understanding (NLU) analysis addresses this by evaluating whether a message is attempting to induce credential submission, independent of surface-level formatting or domain reputation.

A legitimate security notification that says "review your recent sign-in" carries a different semantic profile than an attacker-crafted message demanding "verify your account within 24 hours or it will be deleted," even when both use correct grammar and Google branding.

This detection gap pushes effective analysis toward weighting infrastructure, routing, and relationship signals more heavily than content signals, because routing and relationship patterns are harder to reproduce through content generation alone.

Building a Layered Defense Against Fake Google Security Alerts

Layered controls can help close the gaps that appear when attackers abuse trusted infrastructure, trusted domains, and delayed payload delivery. No single control addresses the full range of fake Google security alert techniques. Each attack variant can evade one or more individual defenses, so overlapping protections matter.

Enforcing DMARC at Reject and Hardening Email Authentication

Strong email authentication helps protect your own domain, even though it does not stop inbound abuse of trusted third-party domains. DMARC at p=reject is foundational but limited. It protects your domain from being spoofed by unauthorized senders, but it does not protect against incoming emails from domains like google.com that already pass authentication. CISA's Binding Operational Directive 25-01 requires federal agencies to implement DMARC at reject across all domains, disable SMTP AUTH, and include CISA reporting addresses in DMARC aggregate reports. Enterprise organizations can treat this as a minimum baseline rather than a complete defense.

SPF record hygiene is often overlooked. When new SaaS integrations begin sending email on behalf of your domain without corresponding SPF record updates, the resulting gaps create both deliverability failures and exploitable security weaknesses. Regular SPF audits should be part of change management. Google Workspace Admin Help says to update your SPF record when you start using a new mail server or third-party sender and to remove entries you no longer use.

Deploying Phishing-Resistant MFA

Phishing-resistant MFA can reduce the impact of credential theft through proxy-based phishing. TOTP-based MFA does not stop credential theft from AiTM proxy attacks. Implement FIDO or PKI-based MFA as phishing-resistant alternatives. Deployment should prioritize privileged administrator accounts, finance roles, executive accounts, and accounts with access to OAuth consent flows.

Configuring Platform-Specific Protections

Platform controls can add useful friction before users ever engage with a malicious message. For Google Workspace environments, administrators should take several steps. First, enable pre-delivery message scanning. Next, configure IMAP link protection, which is not enabled by default. Finally, deploy the Password Alert Chrome extension to generate alerts when Google credentials are entered on non-Google sites.

For Microsoft 365 environments, spoof intelligence and the "Show (?) for unauthenticated senders" indicator should be active, and organizations should avoid adding their own domains to allowed sender lists, as this causes normally blocked malicious messages to be delivered.

Implementing Post-Delivery Detection and Remediation

Post-delivery controls can help when a fake Google alert initially passes inspection. Threat intelligence updates or behavioral analysis may surface new signals only after delivery. Post-delivery protections that can quarantine or remove already-delivered messages are a necessary layer for addressing the time gap between delivery and detection.

What to Do When a Fake Google Security Alert Gets Through

When a fake Google alert reaches an inbox, the priority is fast containment of account access, session exposure, and follow-on phishing activity. Credential theft is often the entry point, which makes rapid containment important.

Prioritizing Incident Response Steps

Confirmed credential compromise requires a clear response sequence. CISA's phishing guidance specifies these steps:

  • Re-Provision Compromised Accounts: Reset credentials and revoke active sessions for any account where credential theft is suspected.
  • Audit Account Access: Review sign-in logs, OAuth application grants, and mail forwarding rules to confirm the attacker no longer has access.
  • Isolate Affected Workstations: If malware was delivered alongside the phishing payload, isolate the endpoint to prevent lateral movement.
  • Review Internal Mail Traffic: Users may be phished from outside the network, then used as launch points for internal phishing. Establish baseline internal traffic patterns and investigate deviations.

Closing the Detection Gap with Behavioral AI for Email

Behavioral AI can help close the detection gap that fake Google security alerts create for email security teams. Traditional rule-based and signature-based email defenses often struggle to detect threats that satisfy the trust signals they are designed to evaluate.

Behavioral AI, applied to email, changes the detection model by analyzing identity signals, communication patterns, routing consistency, and contextual triggers instead of relying on authentication status or known-bad indicators alone.

Abnormal is designed to detect the email and account-based components of attacks like these by modeling what normal communication looks like for each organization and surfacing deviations that rules and signatures miss. Abnormal can help security teams identify sophisticated phishing that passes traditional checks. Book a demo to see how behavioral AI applies to your email environment.

Protect Against Evolving Email Threats

See how behavioral AI detects attacks that legacy defenses miss.