T1667 Splunk · SPL

Detect Email Bombing in Splunk

This detection identifies email bombing attacks where adversaries flood targeted mailboxes with high volumes of inbound messages to disrupt operations, bury legitimate security alerts, or distract victims from concurrent malicious activity. The detection monitors for abnormal spikes in inbound email volume to specific recipients within short time windows, particularly identifying patterns consistent with automated list-subscription bombing (many unique senders, low-value content, rapid delivery) versus legitimate bulk mail. Email bombing is frequently observed as a precursor to vishing attacks where threat actors (notably Storm-1811) follow up with fraudulent IT support calls, making timely detection critical for preventing downstream credential theft or ransomware deployment.

MITRE ATT&CK

Tactic
Impact
Technique
T1667 Email Bombing
Canonical reference
https://attack.mitre.org/techniques/T1667/

SPL Detection Query

Splunk (SPL)
spl
index=* (sourcetype="o365:management:activity" OR sourcetype="ms:o365:defender:emailevents" OR sourcetype="exchange:message_tracking")
| search (Operation="Receive" OR RecordType="ExchangeItem" OR event_type="EmailReceived" OR ClientInfoString="*MailboxDelivery*")
| eval recipient=coalesce('RecipientEmailAddress', 'MailboxOwnerUPN', 'recipient_address')
| eval sender=coalesce('SenderEmailAddress', 'SenderFromAddress', 'sender_address')
| eval sender_domain=replace(sender, "^[^@]+@", "")
| where isnotnull(recipient) AND recipient!=""
| bucket _time span=30m
| stats
    count as EmailCount,
    dc(sender) as UniqueSenders,
    dc(sender_domain) as UniqueDomains,
    values(sender_domain) as SenderDomains,
    values(Subject) as SubjectSamples,
    min(_time) as FirstSeen,
    max(_time) as LastSeen
    by _time, recipient
| where EmailCount >= 100
| eval EmailsPerMinute=round(EmailCount/30, 2)
| eval SenderDiversityRatio=round(UniqueSenders/EmailCount, 3)
| eval BurstDurationSeconds=(LastSeen - FirstSeen)
| eval BurstDurationMinutes=round(BurstDurationSeconds/60, 1)
| eval BombingType=case(
    UniqueSenders>=50 AND EmailCount>=200, "List Subscription Bombing",
    UniqueSenders>=20 AND EmailCount>=100, "Automated Bombing",
    UniqueSenders<5 AND EmailCount>=100, "Single Source Flood",
    1==1, "Anomalous Volume")
| eval Severity=case(
    EmailCount>=500, "Critical",
    EmailCount>=200, "High",
    EmailCount>=100, "Medium",
    1==1, "Low")
| sort - EmailCount
| table _time, recipient, EmailCount, UniqueSenders, UniqueDomains, EmailsPerMinute, SenderDiversityRatio, BurstDurationMinutes, BombingType, Severity, SubjectSamples, SenderDomains
high severity medium confidence

Detects email bombing by aggregating inbound message counts per recipient across 30-minute windows using Office 365 management activity or Exchange message tracking logs. Computes sender diversity ratios to distinguish list-subscription bombing (many unique senders from automated newsletter registrations) from single-source floods, and classifies severity based on volume thresholds.

Data Sources

Microsoft Office 365Exchange Message Tracking

Required Sourcetypes

o365:management:activityms:o365:defender:emailevents

False Positives & Tuning

  • Legitimate marketing automation platforms sending high-volume transactional email notifications to distribution lists
  • IT monitoring and alerting systems (PagerDuty, Nagios, Datadog) generating notification storms during infrastructure outages
  • User accounts that have legitimately opted into many newsletter subscriptions or event mailing lists producing elevated baseline volume
  • Help desk or shared mailboxes that routinely receive high volumes of inbound requests during business hours
Download portable Sigma rule (.yml)

Other platforms for T1667


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Simulate Email Bombing via PowerShell SMTP Flood to Test Mailbox

    Expected signal: EmailEvents table in Microsoft Defender for Office 365 will show 150 inbound messages to [email protected] within a 10-minute window. OfficeActivity logs will reflect delivery events.

  2. Test 2List Subscription Bombing Simulation via Curl (Linux)

    Expected signal: Network proxy logs will show repeated POST requests to external web endpoints from the test host. Email gateway logs will reflect inbound confirmation messages from diverse sender domains if real newsletter endpoints are used.

  3. Test 3Validate Vishing Precursor Pattern — Email Bomb + RAT Execution Sequence

    Expected signal: Sysmon Event ID 1 will capture anydesk.exe process creation with parent process, command line, and user context. DeviceProcessEvents in Microsoft Defender will record the process. Combined with synthetic email bombing telemetry, the hunting query should correlate the two events.

Unlock Pro Content

Get the full detection package for T1667 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections