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/moDetect Pretexting and Phishing for Information via Helpdesk Social Engineering in Splunk
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
SPL Detection Query
index=o365 sourcetype="office365:management:activity" Workload=Exchange
(
Subject="*verify your identity*" OR Subject="*password reset*" OR
Subject="*mfa reset*" OR Subject="*multi-factor reset*" OR
Subject="*org chart*" OR Subject="*employee id*" OR
Subject="*service desk ticket*" OR Subject="*temporary access code*"
)
SenderDisplayName IN ("*helpdesk*", "*help desk*", "*it support*", "*service desk*", "*technical support*")
| eval ThreatType="Phishing_InfoGathering_Lure"
| table _time, SenderAddress, SenderDisplayName, RecipientAddress, Subject, ThreatType
| append
[ search index=o365 sourcetype="office365:management:activity" Workload=AzureActiveDirectory
(Operation="Reset user password" OR Operation="Update StrongAuthenticationMethod" OR Operation="Update user")
ActorUserPrincipalName IN ("*helpdesk*", "*support*", "*servicedesk*")
| stats dc(ObjectId) AS ResetCount, values(ObjectId) AS TargetUsers BY ActorUserPrincipalName, _time span=1h
| where ResetCount>=3
| eval ThreatType="Helpdesk_MassReset_PretextFollowThrough"
| rename ActorUserPrincipalName AS SenderAddress ]
| sort - _time SPL detection over Office 365 Management Activity logs. First subsearch flags inbound Exchange mail impersonating helpdesk/IT display names with reset/info-gathering pretext language. Appended subsearch flags Azure AD operations where a helpdesk-named actor resets password or MFA state for three or more distinct users within a one-hour window, indicating a mass pretext-driven reset campaign.
Data Sources
Required Sourcetypes
False Positives & Tuning
- Automated password-expiration reminder emails from a legitimately named internal helpdesk mailbox — allow-list the verified internal helpdesk sending address
- A scheduled bulk credential rotation performed by IT following a confirmed incident, executed by the real helpdesk service account — correlate with change-management ticket IDs before alerting
- Simulated phishing campaigns run by the security awareness team against employees, using helpdesk-styled lures as the test payload
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.
- Test 1Simulated Helpdesk-Impersonation Phishing Lure Delivery
Expected signal: EmailEvents record with SenderDisplayName containing 'Help Desk', inbound direction, Subject matching pretext keyword list.
- 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.
- 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