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 Elastic Security · Elastic

Detect Pretexting and Phishing for Information via Helpdesk Social Engineering in Elastic Security

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

Elastic Detection Query

Elastic Security (Elastic)
eql
/* Alert 1: Inbound email impersonating helpdesk/IT with info-gathering or reset-pretext language */
email where event.type == "info" and
  email.direction == "inbound" and
  email.from.address : ("*helpdesk*", "*help-desk*", "*itsupport*", "*servicedesk*") and
  (email.subject : "*verify your identity*" or email.subject : "*password reset*" or
   email.subject : "*mfa reset*" or email.subject : "*org chart*" or email.subject : "*employee id*")

/* Alert 2 (run as a separate EQL sequence against Azure AD audit events ingested via Elastic Azure integration) */
/* sequence by azure.auditlogs.identity with maxspan=1h
  [any where event.dataset == "azure.auditlogs" and
    azure.auditlogs.operation_name : "Reset user password" and
    azure.auditlogs.identity : ("*helpdesk*", "*support*")]
  [any where event.dataset == "azure.auditlogs" and
    azure.auditlogs.operation_name : "Reset user password" and
    azure.auditlogs.identity : ("*helpdesk*", "*support*")]
  [any where event.dataset == "azure.auditlogs" and
    azure.auditlogs.operation_name : "Reset user password" and
    azure.auditlogs.identity : ("*helpdesk*", "*support*")]
*/
high severity medium confidence

Elastic EQL detection for helpdesk pretexting. Primary query matches inbound email events (via Elastic email ingestion, e.g. Microsoft 365 or Google Workspace integrations mapped to ECS email.*) with a helpdesk-impersonating sender and reset/info-gathering pretext subject language. The commented sequence query correlates three or more 'Reset user password' Azure AD audit events sharing the same helpdesk-identified actor within a one-hour maxspan, surfacing mass-reset campaigns.

Data Sources

Elastic Security email integrations (Microsoft 365, Google Workspace)Elastic Azure AD Audit Logs integrationElastic Agent

Required Tables

logs-email.*logs-azure.auditlogs-*

False Positives & Tuning

  • Verified internal IT distribution lists sending legitimate password-expiration or MFA re-enrollment reminders — allow-list by authenticated sending domain
  • A confirmed, ticketed bulk password rotation performed by the real helpdesk team following a security incident
  • Security awareness training platforms delivering simulated pretext-phishing tests to measure susceptibility

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