CVE-2026-20045 Microsoft Sentinel · KQL

Detect CVE-2026-20045: Cisco Unified Communications Manager Code Injection in Microsoft Sentinel

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

KQL Detection Query

Microsoft Sentinel (KQL)
kusto
let CUCMHosts = dynamic(["cucm", "callmanager", "ucm"]);
let SuspiciousPatterns = dynamic(["cmd.exe", "powershell", "bash", "sh", "/bin/sh", "wget", "curl", "python", "perl"]);
union DeviceEvents, DeviceProcessEvents, CommonSecurityLog
| where TimeGenerated > ago(7d)
| where DeviceName has_any (CUCMHosts) or DestinationHostName has_any (CUCMHosts) or Computer has_any (CUCMHosts)
| where (EventType == "ProcessCreated" and (ProcessCommandLine has_any (SuspiciousPatterns) or InitiatingProcessFileName in~ ("java", "tomcat")))
   or (Activity has "POST" and RequestURL has_any ("/ccmadmin", "/ccmservice", "/cucm-uds") and RequestBodyLength > 500)
   or (SourceIP !in ("127.0.0.1", "::1") and Activity has "200" and RequestURL has_any ("/axl/", "/realtimeservice2"))
| extend RiskScore = case(
    ProcessCommandLine has_any ("wget", "curl") and ProcessCommandLine has "http", 90,
    ProcessCommandLine has_any ("bash", "sh") and InitiatingProcessFileName has "java", 85,
    RequestBodyLength > 5000, 70,
    50)
| where RiskScore >= 50
| project TimeGenerated, Computer, DeviceName, ProcessCommandLine, InitiatingProcessFileName, RequestURL, SourceIP, DestinationIP, RiskScore
| sort by RiskScore desc
critical severity medium confidence

Detects suspicious process spawning from Cisco UCM Java/Tomcat processes and anomalous HTTP POST activity to administrative endpoints indicative of CVE-2026-20045 exploitation.

Data Sources

Microsoft Defender for EndpointCommonSecurityLogSyslogDeviceProcessEvents

Required Tables

DeviceProcessEventsDeviceEventsCommonSecurityLog

False Positives & Tuning

  • Legitimate administrative scripts executed via CUCM automation frameworks
  • Authorized penetration testing against CUCM infrastructure
  • Large SOAP/AXL API payloads from legitimate UCM integrations such as ITSM platforms
  • Scheduled maintenance jobs spawning shell processes under service accounts

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