Detect CVE-2025-40551 — SolarWinds Web Help Desk Deserialization RCE in Splunk
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
SPL Detection Query
index=* (source="WinEventLog:Security" EventCode=4688 OR source="XmlWinEventLog:Microsoft-Windows-Sysmon/Operational" EventCode=1)
| where (ParentImage LIKE "%java%" OR ParentImage LIKE "%tomcat%" OR ParentImage LIKE "%whd%")
AND (Image LIKE "%cmd.exe" OR Image LIKE "%powershell.exe" OR Image LIKE "%wscript.exe" OR Image LIKE "%cscript.exe" OR Image LIKE "%mshta.exe" OR Image LIKE "%certutil.exe" OR Image LIKE "%bitsadmin.exe" OR Image LIKE "%whoami.exe" OR Image LIKE "%curl.exe" OR Image LIKE "%wget.exe")
| eval alert="CVE-2025-40551 WHD Deserialization RCE Suspected"
| table _time, host, user, ParentImage, ParentCommandLine, Image, CommandLine, alert
| sort - _time Detects child processes indicative of deserialization RCE spawning from SolarWinds Web Help Desk (Java/Tomcat) on Windows hosts.
Data Sources
Required Sourcetypes
False Positives & Tuning
- Legitimate administrative tasks executed by WHD service account
- Scheduled Java-based maintenance scripts spawning shell processes
- Security agent processes running under the WHD/Tomcat process tree
- Developer or testing environments with non-standard process hierarchies
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.