CVE-2026-20045 CrowdStrike LogScale · LogScale

Detect CVE-2026-20045: Cisco Unified Communications Manager Code Injection in CrowdStrike LogScale

Detects exploitation attempts targeting CVE-2026-20045, a code injection vulnerability (CWE-94) in Cisco Unified Communications Manager. This KEV-listed vulnerability allows remote attackers to inject and execute arbitrary code. Detection focuses on anomalous process execution, unexpected web shell activity, and suspicious outbound connections originating from CUCM processes.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=ProcessRollup2
| ImageFileName=/(?i)(java|catalina|tomcat)/
| CommandLine=/(?i)(bash|\bsh\b|\/bin\/sh|python[23]?|perl|wget|curl|nc\b|ncat|netcat)/
| event_platform=Lin
| eval risk_label="Java/Tomcat spawned suspicious child process"
| groupBy([aid, ComputerName, UserName, ImageFileName, CommandLine, ParentBaseFileName], function=count(aid, as=event_count))
| join type=left
  [
    #event_simpleName=NetworkConnectIP4
    | RemotePort in [80, 443, 4444, 8080, 8443, 1337, 9001]
    | not RemoteAddressIP4=/^(127\.|10\.|192\.168\.|172\.(1[6-9]|2[0-9]|3[01]))\./, groupBy([aid], function=collect([RemoteAddressIP4, RemotePort]))
  ]
  on aid
| sort event_count desc
| select ComputerName, UserName, ImageFileName, CommandLine, RemoteAddressIP4, RemotePort, event_count, risk_label
critical severity medium confidence

CrowdStrike Falcon LogScale query detecting Java/Tomcat spawning suspicious child processes on Linux hosts (typical Cisco UCM OS), correlated with outbound network connections to unusual ports post-process spawn.

Data Sources

CrowdStrike Falcon SensorProcessRollup2NetworkConnectIP4

Required Tables

ProcessRollup2NetworkConnectIP4

False Positives & Tuning

  • Tomcat management scripts legitimately invoking curl for health checks
  • Ansible or Chef agents running under the Tomcat service account
  • Java-based monitoring tools spawning shell commands for metric collection

Other platforms for CVE-2026-20045


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 1CVE-2026-20045 Code Injection via AXL SOAP Endpoint

    Expected signal: Tomcat access log entry showing POST to /axl/ with HTTP 200 or 500; if successful, process audit log showing command substitution execution under Tomcat user; /tmp/rce_test.txt created on CUCM host

  2. Test 2Simulate Java Spawning Reverse Shell on CUCM OS

    Expected signal: ProcessRollup2 event (CrowdStrike) or DeviceProcessEvents (MDE) showing bash or java process with parent java; network connection to ATTACKER_IP:4444 if reverse shell variant used

  3. Test 3Web Shell Deployment Simulation on CUCM Tomcat

    Expected signal: File creation event for .jsp file in /opt/cisco/platform/ui/; if Tomcat is running, subsequent HTTP GET requests to the new JSP path; audit log showing file write under test user account

  4. Test 4AXL Credential Brute-Force Reconnaissance

    Expected signal: Multiple HTTP 401/403 responses from CUCM to the source IP in rapid succession; authentication failure events in CUCM security logs; CommonSecurityLog or Syslog entries showing repeated failed logins

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections