CVE-2025-26399 Elastic Security · Elastic

Detect SolarWinds Web Help Desk Deserialization of Untrusted Data (CVE-2025-26399) in Elastic Security

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

Elastic Detection Query

Elastic Security (Elastic)
eql
sequence by host.name with maxspan=2m
  [process where event.type == "start"
    and process.name : "java.exe"
    and (process.working_directory : "*WebHelpDesk*" or host.name : ("*whd*", "*helpdesk*", "*webhelpdesk*"))]
  [process where event.type == "start"
    and process.parent.name : "java.exe"
    and process.name : ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "mshta.exe", "certutil.exe", "bitsadmin.exe", "curl.exe", "wget.exe", "sh", "bash", "python*", "perl*")]
| keep @timestamp, host.name, user.name, process.parent.command_line, process.name, process.command_line, process.pid
critical severity high confidence

EQL sequence rule detecting CVE-2025-26399 exploitation by correlating a WHD Java process start with a suspicious child process spawned within a two-minute window on the same host.

Data Sources

Elastic Endpoint SecurityWinlogbeat with SysmonElastic Agent

Required Tables

logs-endpoint.events.process-*winlogbeat-*

False Positives & Tuning

  • Automated deployment pipelines that invoke shell utilities from Java-based build tools on the WHD host
  • IT automation agents (Puppet, Chef, Ansible) using Java runtimes that spawn shell processes
  • Legitimate scripted health checks executed by the WHD application's own Java process
  • Java-based monitoring tools with shell callbacks for alerting

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