Detect CVE-2025-40551 — SolarWinds Web Help Desk Deserialization RCE in IBM QRadar
Detects exploitation of CVE-2025-40551, a deserialization of untrusted data vulnerability in SolarWinds Web Help Desk. Successful exploitation allows unauthenticated or low-privileged attackers to achieve remote code execution on the WHD server. This CVE is listed in CISA KEV, indicating active exploitation in the wild.
MITRE ATT&CK
- Tactic
- Initial Access Execution Persistence
QRadar Detection Query
SELECT DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS EventTime, sourceip, username, "ParentProcessName", "ProcessName", "CommandLine", LOGSOURCENAME(logsourceid) AS LogSource
FROM events
WHERE LOGSOURCETYPENAME(devicetype) IN ('Microsoft Windows Security Event Log', 'Sysmon')
AND ("ParentProcessName" ILIKE '%java%' OR "ParentProcessName" ILIKE '%tomcat%' OR "ParentProcessName" ILIKE '%whd%')
AND ("ProcessName" ILIKE '%cmd.exe%' OR "ProcessName" ILIKE '%powershell.exe%' OR "ProcessName" ILIKE '%wscript.exe%' OR "ProcessName" ILIKE '%certutil.exe%' OR "ProcessName" ILIKE '%mshta.exe%' OR "ProcessName" ILIKE '%whoami.exe%' OR "ProcessName" ILIKE '%curl.exe%')
AND LAST 7 DAYS
ORDER BY starttime DESC QRadar AQL query identifying suspicious child processes under SolarWinds WHD Java/Tomcat parent processes, consistent with CVE-2025-40551 deserialization exploitation.
Data Sources
Required Tables
False Positives & Tuning
- Legitimate WHD service account administrative activity
- Automated Java maintenance tasks invoking shell utilities
- Security tooling or EDR sensors running beneath Tomcat
- Scheduled diagnostics or backup scripts under the WHD process
Other platforms for CVE-2025-40551
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.
- Test 1Simulate WHD Deserialization RCE — Whoami Execution
Expected signal: ProcessCreate event with ParentImage=java.exe and Image=whoami.exe; captured by Sysmon EventID 1 or Defender DeviceProcessEvents
- Test 2Simulate WHD Deserialization RCE — PowerShell Reverse Shell Stub
Expected signal: ProcessCreate with ParentImage=java.exe, Image=powershell.exe, CommandLine containing '-NoProfile'; network telemetry if actual reverse shell payload used
- Test 3Simulate WHD Web Shell Drop via Java Process
Expected signal: FileCreate event for shell.jsp under WHD webapps directory, initiated by java.exe; Sysmon EventID 11 or DeviceFileEvents
- Test 4Simulate WHD Outbound C2 Callback from Java Process (Linux)
Expected signal: Network connection from java or curl process to external IP on non-standard port; captured by auditd, Falco, or network flow telemetry
Unlock Pro Content
Get the full detection package for CVE-2025-40551 including response playbook, investigation guide, and atomic red team tests.