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

Unlock with Pro - from £29/user/mo
THREAT-Recon-PretextingHelpdeskInfoGathering CrowdStrike LogScale · LogScale

Detect Pretexting and Phishing for Information via Helpdesk Social Engineering in CrowdStrike LogScale

Reconnaissance-stage social engineering in which attackers contact an organization's helpdesk or employees by phone (vishing) or email under a false pretext — posing as a new hire, executive, or IT staff member — to elicit organizational information: employee IDs, org charts, software/VPN inventory, internal extensions, and password/MFA reset procedures. This intelligence is then weaponized for initial access, most notably by Scattered Spider (UNC3944), which called helpdesks impersonating employees to talk agents into resetting passwords and MFA enrollment ahead of the 2023 MGM Resorts and Caesars Entertainment intrusions. CISA AA23-320A documents the pattern: pretext call/email gathers org info and builds rapport, followed by a credential or MFA reset request that helpdesk staff approve without adequate identity verification. Because the initial contact rarely trips EDR, detection relies on correlating inbound lure emails impersonating IT/helpdesk with anomalous downstream identity operations (mass or unverified resets) performed by helpdesk-privileged accounts.

MITRE ATT&CK

Tactic
Reconnaissance

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
// Alert 1: Inbound email impersonating helpdesk/IT with reset or info-gathering pretext language
// (requires CrowdStrike Falcon for Email / integrated M365 email event ingestion into LogScale)
#event_simpleName=EmailMessageEvent
| SenderDisplayName = /(?i)(helpdesk|help.desk|it.support|service.desk)/
| Subject = /(?i)(verify your identity|password reset|mfa reset|org chart|employee id|service desk ticket)/
| ThreatType := "Phishing_InfoGathering_Lure"
| groupBy([SenderAddress, SenderDisplayName, RecipientAddress, Subject, ThreatType], function=[count(as=EventCount)])
| sort(EventCount, order=desc)

// Alert 2: Helpdesk-identified actor resetting password/MFA for 3+ distinct users within an hour
// (requires Falcon Identity Protection or M365 AuditLog ingestion into LogScale)
#event_simpleName=IdentityPasswordReset OR #event_simpleName=AuditLogResetPassword
| ActorUserPrincipalName = /(?i)(helpdesk|support|servicedesk)/
| groupBy([ActorUserPrincipalName, bucket(field="@timestamp", span=1h)], function=[count(distinct(TargetUserPrincipalName), as=ResetCount), collect([TargetUserPrincipalName], as=TargetUsers)])
| ResetCount >= 3
| ThreatType := "Helpdesk_MassReset_PretextFollowThrough"
| sort(ResetCount, order=desc)
high severity medium confidence

CrowdStrike LogScale (Falcon NG-SIEM) CQL queries. The first flags email events with a helpdesk-impersonating sender display name and reset/info-gathering pretext subject language. The second aggregates identity password/MFA reset events by actor and one-hour bucket, flagging any helpdesk-identified actor resetting three or more distinct target users within the window — the observable follow-through of a successful pretext call. Field names assume Falcon Identity Protection or M365 audit log ingestion; adapt to your specific LogScale repo schema.

Data Sources

CrowdStrike Falcon for Email / M365 email event ingestionCrowdStrike Falcon Identity ProtectionCrowdStrike LogScale (Humio)

Required Tables

EmailMessageEvent eventsIdentityPasswordReset / AuditLogResetPassword events

False Positives & Tuning

  • Verified internal helpdesk sending addresses delivering legitimate reset reminders — exclude by authenticated sender domain in a LogScale lookup file
  • A confirmed, ticketed bulk password rotation performed by the real helpdesk operations team following an incident
  • Security awareness training platforms delivering simulated helpdesk-pretext phishing tests

Other platforms for THREAT-Recon-PretextingHelpdeskInfoGathering


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 1Simulated Helpdesk-Impersonation Phishing Lure Delivery

    Expected signal: EmailEvents record with SenderDisplayName containing 'Help Desk', inbound direction, Subject matching pretext keyword list.

  2. Test 2Simulated Mass Helpdesk Password Reset (Graph PowerShell)

    Expected signal: AuditLogs entries for 'Reset user password' with InitiatedBy matching the test helpdesk operator account, TargetResources listing three distinct users within the same hour.

  3. Test 3Simulated Post-Reset New-Device MFA Registration

    Expected signal: Entra ID authentication methods audit trail showing a new phone method registered for atomic-test-user1 within minutes of the Alert 2 reset event.

Unlock playbooks & atomic tests with Pro

Get the full detection package for THREAT-Recon-PretextingHelpdeskInfoGathering — 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