CVE-2025-26399 Sumo Logic CSE · Sumo

Detect SolarWinds Web Help Desk Deserialization of Untrusted Data (CVE-2025-26399) in Sumo Logic CSE

CVE-2025-26399 is a deserialization of untrusted data vulnerability (CWE-502) in SolarWinds Web Help Desk. Exploitation allows remote attackers to execute arbitrary code by sending maliciously crafted serialized Java objects to the application. This vulnerability is listed in CISA's Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. SolarWinds Web Help Desk is widely deployed in enterprise and government environments for IT service management, making this a high-priority target for threat actors seeking privileged network access.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
(_sourceCategory="windows/sysmon" OR _sourceCategory="windows/security" OR _sourceCategory="crowdstrike/events")
| json auto
| where (
    (toLowerCase(%"ParentImage") matches "*java.exe*" OR toLowerCase(%"ParentCommandLine") matches "*webhelpdesk*")
    AND (
      toLowerCase(%"Image") matches "*cmd.exe*"
      OR toLowerCase(%"Image") matches "*powershell.exe*"
      OR toLowerCase(%"Image") matches "*wscript.exe*"
      OR toLowerCase(%"Image") matches "*cscript.exe*"
      OR toLowerCase(%"Image") matches "*certutil.exe*"
      OR toLowerCase(%"Image") matches "*mshta.exe*"
    )
  )
| (toLowerCase(%"Computer") matches "*whd*" OR toLowerCase(%"Computer") matches "*helpdesk*" OR toLowerCase(%"Computer") matches "*webhelpdesk*")
| fields _messagetime, %"Computer", %"User", %"ParentImage", %"ParentCommandLine", %"Image", %"CommandLine"
| sort by _messagetime desc
critical severity high confidence

Sumo Logic query detecting CVE-2025-26399 exploitation by identifying suspicious process creation events where WHD Java spawns known post-exploitation utilities, filtered to WHD-named hosts.

Data Sources

Sysmon via Sumo Logic Installed CollectorWindows Security EventsCrowdStrike Falcon via Sumo Logic

Required Tables

windows/sysmonwindows/securitycrowdstrike/events

False Positives & Tuning

  • Java-based build or CI tools running on the WHD host that invoke shell utilities
  • Third-party plugins or integrations in Web Help Desk that legitimately spawn helper processes
  • System administrators RDP'ing into the WHD host and running PowerShell from a Java-launched terminal session
  • Automated backup or reporting jobs that use Java and shell commands in sequence

Other platforms for CVE-2025-26399


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 Java Deserialization Reverse Shell Spawn (Windows)

    Expected signal: Sysmon Event ID 1: ProcessCreate with ParentImage=java.exe, Image=cmd.exe, CommandLine containing 'whoami'; DeviceProcessEvents in MDE showing same relationship

  2. Test 2Simulate WHD Java Process Network Beacon to C2 Port

    Expected signal: Sysmon Event ID 3: NetworkConnect from java.exe to 127.0.0.1:4444; MDE DeviceNetworkEvents showing RemotePort=4444 from InitiatingProcessFileName=java.exe

  3. Test 3Simulate Malicious Class File Drop by WHD JVM (Linux)

    Expected signal: Linux auditd or Sysmon-for-Linux: file creation event under /tmp owned by webhelpdesk user, initiated by java process; file content containing shell redirect syntax

  4. Test 4Reproduce Serialized Object HTTP POST to WHD Endpoint (Lab)

    Expected signal: WAF/proxy logs showing HTTP POST with Content-Type: application/octet-stream and body beginning with AC ED 00 05; WHD application logs showing deserialization attempt (may log exception)

Unlock Pro Content

Get the full detection package for CVE-2025-26399 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections