Response playbooks, investigation guides, and Atomic Red Team tests are Pro-only. Upgrade to unlock the full detection package for THREAT-Recon-PretextingReconEmailTrackingBeacon.

Upgrade to Pro
THREAT-Recon-PretextingReconEmailTrackingBeacon Sumo Logic CSE · Sumo

Detect Pretexting Reconnaissance Email with Tracking Pixel / Beacon Link in Sumo Logic CSE

Before committing to a spearphishing attachment (T1598.002) or spearphishing link (T1598.003) payload, adversaries increasingly send an innocuous, low-payload pretexting email first — a brief 'checking in', 'meeting request', or 'invoice follow-up' message with no attachment and no overt malicious link. The email instead embeds a uniquely-tokenized tracking pixel (a 1x1 image or invisible-CSS beacon) or a benign-looking beacon link, where the token is minted per-recipient. When the recipient's mail client renders the image or a human clicks the link, the beacon fires a GET request back to adversary-controlled infrastructure, confirming the mailbox is live, fingerprinting the recipient's IP address, approximate geolocation, mail client/user agent, and open time, and validating that a real human (not a sandbox or secure email gateway detonation chamber) triggered it. Star Blizzard, TA453, and TA427 have been documented using single-pixel and unique-URL tracking beacons in low-content reconnaissance emails to qualify targets and time follow-on credential-harvesting or malware-laden messages for when the mailbox is confirmed active. Because these emails carry no attachment and no overtly malicious URL pattern, they routinely pass secure email gateway and sandbox scoring; detection instead relies on correlating the low-payload email itself (via EmailEvents/EmailUrlInfo) with the subsequent beacon fetch observed in web proxy/gateway logs.

MITRE ATT&CK

Tactic
Reconnaissance

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=*o365*email* OR _sourceCategory=*exchange*
| where Operation = "MessageReceived"
| where AttachmentCount = 0
| parse field=Urls "*" as UrlList nodrop
| where UrlList matches "*uid=*" or UrlList matches "*token=*" or UrlList matches "*tid=*" or UrlList matches "*track=*" or UrlList matches "*.gif*" or UrlList matches "*.png*"
| eval HasTrackingToken = if (UrlList matches "*uid=*" or UrlList matches "*token=*" or UrlList matches "*tid=*" or UrlList matches "*track=*", "YES", "NO")
| eval IsPixelUrl = if (UrlList matches "*.gif*" or UrlList matches "*.png*" or UrlList matches "*.jpg*", "YES", "NO")
| eval ThreatType = "PretextingRecon_TrackingBeaconEmail"
| fields _messageTime, SenderAddress, RecipientAddress, Subject, UrlList, HasTrackingToken, IsPixelUrl, ThreatType
| count by SenderAddress, RecipientAddress, HasTrackingToken, IsPixelUrl, ThreatType
| sort - _count
medium severity medium confidence

Sumo Logic query detecting low-payload pretexting emails via Office 365 Management Activity API logs. Flags zero-attachment inbound messages whose embedded URL contains a per-recipient tracking token or points to a raster image beacon file, consistent with reconnaissance emails used to fingerprint and validate live mailboxes ahead of follow-on spearphishing or BEC attacks.

Data Sources

Sumo Logic Cloud SIEMOffice 365 Management Activity API

Required Tables

Office 365 MessageReceived events ingested under the appropriate _sourceCategory

False Positives & Tuning

  • Marketing platform tracking pixels (Mailchimp, HubSpot) — add a Sumo Logic allowlist lookup table of approved marketing sender domains
  • Sales engagement tool tracking links (Outreach.io, Salesloft) for legitimate outbound sales campaigns
  • Automated meeting/scheduling confirmations (Calendly, Doodle) with tracking parameters in confirmation links

Other platforms for THREAT-Recon-PretextingReconEmailTrackingBeacon


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 1Low-Payload Email with Unique Tracking Token URL

    Expected signal: EmailEvents record with AttachmentCount=0, UrlCount=1; EmailUrlInfo record for the tracking URL containing a uid= query parameter matching the tracking token regex.

  2. Test 2Tracking Pixel Beacon Fetch Simulation

    Expected signal: Web proxy/gateway access log entry showing a GET request to status-updates-portal.example/px.gif with the uid= tracking parameter, timestamped shortly after the simulated email delivery.

  3. Test 3Bulk Freemail Sender Recon Email Without Tracking Token (Negative Control)

    Expected signal: EmailEvents record with AttachmentCount=0, UrlCount=0; no EmailUrlInfo record for this NetworkMessageId.

Unlock playbooks & atomic tests with Pro

Get the full detection package for THREAT-Recon-PretextingReconEmailTrackingBeacon — response playbook and atomic red team tests, plus investigation guidance and hunting queries.

df00tech Pro — £29/user/month

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections