CVE-2025-40551 IBM QRadar · QRadar

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

IBM QRadar (QRadar)
sql
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
critical severity high confidence

QRadar AQL query identifying suspicious child processes under SolarWinds WHD Java/Tomcat parent processes, consistent with CVE-2025-40551 deserialization exploitation.

Data Sources

Windows Security Event LogSysmonQRadar SIEM

Required Tables

events

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.

  1. 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

  2. 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

  3. 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

  4. 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.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections