CVE-2026-20182 Microsoft Sentinel · KQL

Detect Cisco Catalyst SD-WAN Controller Authentication Bypass (CVE-2026-20182) in Microsoft Sentinel

Detects exploitation attempts of CVE-2026-20182, an authentication bypass vulnerability (CWE-287) in the Cisco Catalyst SD-WAN Controller. This KEV-listed vulnerability allows unauthenticated remote attackers to bypass authentication mechanisms and gain unauthorized access to the SD-WAN management plane. Successful exploitation can lead to full network fabric compromise, configuration tampering, and lateral movement across SD-WAN-connected sites.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Defense Evasion Lateral Movement

KQL Detection Query

Microsoft Sentinel (KQL)
kusto
let sdwan_management_ports = dynamic([443, 8443, 8080, 8888, 830]);
let suspicious_paths = dynamic(["/dataservice", "/api/", "/j_security_check", "/login", "/management"]);
union
(
  CommonSecurityLog
  | where DeviceVendor has_any ("Cisco") and DeviceProduct has_any ("SD-WAN", "vManage", "vSmart", "vBond")
  | where Activity has_any ("auth_bypass", "authentication failure", "unauthorized", "401", "403")
  | extend SourceIP = coalesce(SourceIP, DeviceAddress)
),
(
  W3CIISLog
  | where csUriStem has_any (suspicious_paths)
  | where scStatus in (200, 302) and csMethod in ("GET", "POST")
  | where csUriQuery has_any ("token=", "jwt=", "session=")
),
(
  AzureNetworkAnalytics_CL
  | where DestPort_d in (sdwan_management_ports)
  | where FlowStatus_s == "A"
  | where FlowType_s == "ExternalPublic"
),
(
  DeviceNetworkEvents
  | where RemotePort in (sdwan_management_ports)
  | where InitiatingProcessFileName in~ ("curl.exe", "python.exe", "python3", "wget", "powershell.exe")
  | where RemoteUrl has_any ("vmanage", "sdwan", "catalyst-sdwan")
)
| summarize
    EventCount = count(),
    FirstSeen = min(TimeGenerated),
    LastSeen = max(TimeGenerated),
    UniqueSourceIPs = dcount(SourceIP)
  by bin(TimeGenerated, 5m), SourceIP, DestinationIP
| where EventCount > 5 or UniqueSourceIPs > 3
| extend
    Severity = "Critical",
    CVE = "CVE-2026-20182",
    Vendor = "Cisco",
    Product = "Catalyst SD-WAN"
| project TimeGenerated, SourceIP, DestinationIP, EventCount, UniqueSourceIPs, FirstSeen, LastSeen, Severity, CVE, Vendor, Product
critical severity medium confidence

Detects authentication bypass exploitation attempts against Cisco Catalyst SD-WAN management interfaces by correlating anomalous HTTP responses, management port access from external IPs, and authentication failures across network and endpoint telemetry.

Data Sources

CommonSecurityLogW3CIISLogAzureNetworkAnalytics_CLDeviceNetworkEventsSyslog

Required Tables

CommonSecurityLogW3CIISLogAzureNetworkAnalytics_CLDeviceNetworkEvents

False Positives & Tuning

  • Legitimate administrative access from internal management networks on SD-WAN management ports
  • Automated monitoring or health-check systems polling the SD-WAN vManage API
  • Penetration testing or authorized red team exercises against SD-WAN infrastructure
  • Certificate renewal or automated orchestration tools accessing management APIs
  • Load balancer health probes targeting SD-WAN controller endpoints

Other platforms for CVE-2026-20182


Testing Methodology

Validate this detection against 3 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 1Unauthenticated vManage API Endpoint Enumeration

    Expected signal: HTTP GET requests to vManage management port (8443) targeting /dataservice/* and /j_security_check endpoints from the test host IP, captured in vManage access logs and network firewall logs. Response codes of 200 or 401/403 depending on vulnerability state.

  2. Test 2Authentication Bypass Session Token Forge Attempt

    Expected signal: POST requests to /j_security_check and GET requests to /dataservice/* with anomalous Authorization headers or malformed JSESSIONID cookies visible in vManage access logs, web proxy logs, and network PCAP. HTTP response codes of 200, 302, 401, or 403 depending on patch state.

  3. Test 3Post-Exploitation SD-WAN Configuration Exfiltration Simulation

    Expected signal: Sequential GET requests to /dataservice/device, /dataservice/template/device, and /dataservice/system/device/controllers within a short time window, all using the same session cookie. Requests captured in vManage audit log as API access events and in network logs as HTTPS traffic to management port.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections