Multiple Phishing Emails Bypassing ATP

Abdul Waqas 345 Reputation points
2026-06-04T10:54:21.2166667+00:00

We are currently under an active and ongoing phishing/spam campaign that has been continuously targeting our organization for the past several days. Despite having Microsoft Defender for Office 365 Plan 2 fully enabled and correctly configured security policies in place, these malicious emails are consistently bypassing all protections and reaching end users.

🚨 Critical Observations:

Emails are being received daily at a consistent time window

The subject remains identical, indicating a coordinated campaign

The sender domains are changing continuously every day (domain rotation attack)

Emails are successfully bypassing Microsoft Defender for Office 365 filtering

Multiple users across the organization are being affected

⚠️ Security Controls Already in Place:

Microsoft Defender for Office 365 Plan 2 enabled

Anti-phishing policies configured and active

Anti-spam policies enabled

Mail flow rules implemented for temporary blocking

Manual domain blocking is being performed daily

Despite all of the above controls, the attack is still not being stopped effectively.

Microsoft Security | Microsoft Defender | Microsoft Defender for Office 365
0 comments No comments

Answer accepted by question author
Derek Morgan II 85 Reputation points
2026-06-08T15:27:11.5033333+00:00

Hi @Abdul Waqas

The earlier answer is thorough, so I'll just add what tends to actually crack a rotating campaign.

Domain rotation beats domain blocking by design, so stop chasing the sender domain and pin the invariant instead. The subject and the sending infrastructure usually stay constant even as the domain changes. Block the payload URL on the URLs tab and the attachment's SHA256 on the Files tab of the Tenant Allow/Block List, and block the sending IPv4 in the connection filter policy (TABL only takes IPv6, and it doesn't do ASN).

Before tuning anything, confirm nothing is forcing delivery: a TABL allow entry, Outlook Safe Senders, or a transport rule setting SCL -1. A campaign clearing correctly configured policy is usually an override.

Then hunt for the pattern and the reason it lands:

EmailEvents
| where Timestamp > ago(7d)
| where DeliveryAction == "Delivered"
| summarize Count=count(), Domains=dcount(SenderMailFromDomain),
            IPs=make_set(SenderIPv4, 10)
        by Subject, EmailActionPolicy, ConfidenceLevel
| order by Count desc

Many domains but few IPs gives you the invariant to block. ConfidenceLevel -1 or a transport rule in EmailActionPolicy is your bypass.

Keep users reporting so submissions train the filter.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. AI answer

    2026-06-04T10:54:42.3833333+00:00

    Use a combination of tuning, stronger policies, and proper reporting so Microsoft’s filters learn from these messages and block the campaign without relying on daily manual domain blocks.

    1. Contain and investigate the current campaign
    2. Identify all affected users and messages:
    3. Remove malicious emails from mailboxes:
      • Use Defender for Office 365 investigation and response capabilities (e.g., Explorer, ZAP, and remediation actions) to soft‑delete or quarantine all campaign messages from user mailboxes.
    4. Ensure users are reporting:
    5. Submit samples directly to Microsoft:
    6. Tune anti-phishing and related protection
    7. Increase phishing sensitivity:
    8. Enable and tune impersonation protection:
    9. Verify Safe Links and Safe Attachments coverage:
    10. Avoid over‑allowing that bypasses filters:
      • Review and minimize use of:
        • Tenant allow entries for domains/addresses.
        • Allowed sender/domain lists in anti‑spam policies.
        • Outlook Safe Senders lists that might bypass spoof/anti‑phish.
      • Overly broad allowlists can let high‑confidence phish through. Microsoft recommends avoiding allowed sender/domain lists where possible. See Use allowed sender lists or allowed domain lists and Outlook Safe Senders.
    11. Harden authentication and spoof protection
    12. Ensure SPF, DKIM, and DMARC are correctly configured for all domains:
      • Proper email authentication lets Microsoft 365 more accurately detect spoofing and phishing, especially in domain‑rotation attacks. See Email authentication.
    13. Review anti‑spoofing settings:
    14. Improve long-term resilience
    15. Use Campaign Views and reports:
    16. Leverage user education and simulations:
    17. Handle future false negatives systematically:

    By combining higher phishing thresholds, fully enabled impersonation/Safe Links/Safe Attachments, strict control of allowlists, robust email authentication, and consistent reporting/submission of these campaign messages, Defender for Office 365 Plan 2 can learn from the current attack and significantly reduce or stop similar messages from reaching end users.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.