Cisco Catalyst SD-WAN Controller Authentication Bypass (CVE-2026-20182)
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.
Vulnerability Intelligence
KEV — Known ExploitedAffected Software
- Vendor
- Cisco
- Product
- Catalyst SD-WAN
Weakness (CWE)
Timeline
- Disclosed
- May 14, 2026
References & Proof of Concept
- https://www.cisa.gov/news-events/directives/ed-26-03-mitigate-vulnerabilities-cisco-sd-wan-systems
- https://www.cisa.gov/news-events/directives/supplemental-direction-ed-26-03-hunt-and-hardening-guidance-cisco-sd-wan-systems
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-sdwan-rpa2-v69WY2SW
- https://nvd.nist.gov/vuln/detail/CVE-2026-20182
CVSS
What is CVE-2026-20182 Cisco Catalyst SD-WAN Controller Authentication Bypass (CVE-2026-20182)?
Cisco Catalyst SD-WAN Controller Authentication Bypass (CVE-2026-20182) (CVE-2026-20182) maps to the Initial Access and Privilege Escalation and Defense Evasion and Lateral Movement tactics — the adversary is trying to get into your network in MITRE ATT&CK.
This page provides production-ready detection logic for Cisco Catalyst SD-WAN Controller Authentication Bypass (CVE-2026-20182), covering the data sources and telemetry it touches: CommonSecurityLog, W3CIISLog, AzureNetworkAnalytics_CL, DeviceNetworkEvents, Syslog. The queries below are rated critical severity at medium confidence, and ship for 7 SIEM platforms — KQL, SPL, Elastic, QRadar, Sumo, YARA-L, LogScale.
MITRE ATT&CK
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 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
Required Tables
False Positives
- 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
Sigma rule & cross-platform mapping
The detection logic for Cisco Catalyst SD-WAN Controller Authentication Bypass (CVE-2026-20182) (CVE-2026-20182) above is provided in a vendor-neutral
form so you can deploy it on any SIEM. The same logic is shipped here as native
KQL (Microsoft Sentinel / Defender), SPL (Splunk), Elastic (Elastic Security (EQL)), QRadar (IBM QRadar (AQL)), Sumo (Sumo Logic CSE), YARA-L (Google Chronicle / SecOps), LogScale (CrowdStrike LogScale (CQL)) queries. In Sigma terms, this detection targets the
following logsource:
logsource:
category: network_connection
product: windows Browse the community-maintained Sigma rules for this technique:
Platform-specific guides for CVE-2026-20182
References (4)
- https://www.cisa.gov/news-events/directives/ed-26-03-mitigate-vulnerabilities-cisco-sd-wan-systems
- https://www.cisa.gov/news-events/directives/supplemental-direction-ed-26-03-hunt-and-hardening-guidance-cisco-sd-wan-systems
- https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-sdwan-rpa2-v69WY2SW
- https://nvd.nist.gov/vuln/detail/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.
- 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.
- 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.
- 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.