T1566.004 IBM QRadar · QRadar

Detect Spearphishing Voice in IBM QRadar

Adversaries use voice communications (phone calls, VoIP) to socially engineer victims into granting system access, installing remote management tools (RMM), executing malicious scripts, or approving fraudulent MFA prompts. The attacker typically impersonates IT support or a trusted authority, creating urgency to bypass the victim's critical thinking. Unlike phishing email techniques, vishing leaves no direct technical artifact from the call itself — detection must focus on the downstream behaviors: abnormal RMM tool installation, suspicious process chains spawned during or after remote sessions, and MFA anomaly patterns. Storm-1811 is a documented threat group using this technique, directing victims to open Quick Assist (a built-in Windows remote desktop tool) to hand over system control to the attacker posing as Microsoft or internal IT support.

MITRE ATT&CK

Tactic
Initial Access
Technique
T1566 Phishing
Sub-technique
T1566.004 Spearphishing Voice
Canonical reference
https://attack.mitre.org/techniques/T1566/004/

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT DATEFORMAT(devicetime, 'yyyy-MM-dd HH:mm:ss') as EventTime,
  logsourcename(logsourceid) as LogSource, username as User,
  "ParentImage" as ParentProcess, "Image" as ChildProcess, "CommandLine" as CommandLine,
  CASE WHEN LOWER("Image") LIKE ANY ('%anydesk%','%teamviewer%','%screenconnect%','%quickassist%')
            AND LOWER("ParentImage") LIKE '%powershell%' THEN 10
       WHEN LOWER("ParentImage") LIKE ANY ('%anydesk%','%teamviewer%','%screenconnect%')
            AND LOWER("Image") LIKE ANY ('%powershell%','%mshta%','%wscript%') THEN 10
       ELSE 7 END as RiskScore
FROM events
WHERE eventid IN (1, 4688)
  AND (
    (LOWER("Image") LIKE ANY ('%anydesk.exe%','%teamviewer.exe%','%screenconnect.exe%',
                                '%quickassist.exe%','%rustdesk.exe%','%supremo.exe%') AND
     LOWER("ParentImage") LIKE ANY ('%cmd.exe%','%powershell%','%wscript%','%cscript%','%mshta%'))
    OR (LOWER("ParentImage") LIKE ANY ('%anydesk.exe%','%teamviewer.exe%','%screenconnect.exe%',
                                         '%quickassist.exe%','%splashtop.exe%') AND
        LOWER("Image") LIKE ANY ('%cmd.exe%','%powershell%','%wscript%','%certutil%','%bitsadmin%','%msiexec%'))
  )
ORDER BY RiskScore DESC, EventTime DESC
high severity medium confidence

Detects RMM tool abuse for voice phishing attacks using process relationship analysis in QRadar.

Data Sources

Windows SysmonWindows Security Event Log

Required Tables

events

False Positives & Tuning

  • Legitimate IT helpdesk sessions where support staff use Quick Assist or AnyDesk to assist users and then run PowerShell diagnostic scripts
  • Managed Service Providers (MSPs) running RMM agents (Atera, ConnectWise, Splashtop) that legitimately execute scripts for patch management or software deployment
  • Software asset management tools that deploy or update packages via RMM-like processes during business hours
  • IT onboarding workflows where AnyDesk or TeamViewer is used to configure new endpoints and install baseline tooling via scripted deployment
  • Vendor-initiated remote support sessions for enterprise software that involve running diagnostic PowerShell commands
Download portable Sigma rule (.yml)

Other platforms for T1566.004


Testing Methodology

Validate this detection against 4 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 1Silent AnyDesk Installation (Vishing Initial Access Simulation)

    Expected signal: Sysmon Event ID 11 (File Create): AnyDesk.exe written to %TEMP%. Sysmon Event ID 1 (Process Create): AnyDesk.exe spawned with --portable argument, parent process is PowerShell. Sysmon Event ID 3 (Network Connection): Outbound connection to download.anydesk.com (185.34.32.x) on port 443 for download, and to AnyDesk relay servers on port 7070 or 443 after launch. Windows Security Event 4688 if command line auditing enabled.

  2. Test 2Quick Assist Session Initiation with Child PowerShell (Storm-1811 TTP)

    Expected signal: Sysmon Event ID 1 (Process Create): quickassist.exe started. Sysmon Event ID 1 (Process Create): powershell.exe started with parent process being the test script's shell (simulating quick assist parent). The detection query branch 'QuickAssist_Child_Execution' specifically looks for Quick Assist spawning PowerShell. Microsoft-Windows-RemoteAssistance/Operational Event ID 1 logged when Quick Assist initializes.

  3. Test 3Post-Vishing Script Delivery via RMM Session Simulation

    Expected signal: Sysmon Event ID 1 (Process Create): powershell.exe with -ExecutionPolicy Bypass, -WindowStyle Hidden, and Net.WebClient/DownloadString in CommandLine. Sysmon Event ID 3 (Network Connection): attempt to connect to 127.0.0.1:9999 (will fail — no listener). Sysmon Event ID 11 (File Create): vishing-stage2-test.txt written to %TEMP%. PowerShell ScriptBlock Log Event ID 4104: full deobfuscated script content captured.

  4. Test 4Callback Phishing URL Pattern Execution (Luna Moth Simulation)

    Expected signal: Sysmon Event ID 1 (Process Create): cmd.exe spawning msiexec.exe with HTTP URL argument. Sysmon Event ID 3 (Network Connection): msiexec.exe attempting outbound HTTP connection to 127.0.0.1:9998 (will fail). Windows Security Event 4688: msiexec.exe process creation with URL in command line if command line auditing enabled. The msiexec with HTTP URL pattern is characteristic of vishing-directed software installation.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections