How to Fix CVE-2026-20127: Authentication Bypass in Cisco Catalyst SD-WAN Manager
By Sai Kiran Pandrala
| Severity | CVSS 10 - Critical |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2026-02-25) |
| Affected | Cisco Catalyst SD-WAN Manager 20.1.12; Cisco Catalyst SD-WAN Manager 19.2.1; Cisco Catalyst SD-WAN Manager 18.4.4; Cisco Catalyst SD-WAN Manager 18.4.5; see advisory for full list |
| Fixed in | See vendor advisory |
| Type (CWE) | CWE-287: Improper Authentication |
Patch immediately. CISA added CVE-2026-20127 to the Known Exploited Vulnerabilities catalog on 2026-02-25. Federal civilian agencies must remediate by 2026-02-27. Treat every internet-reachable instance as a priority patch.
What is CVE-2026-20127?
CVE-2026-20127 is an Authentication Bypass flaw in Cisco Catalyst SD-WAN Manager. It carries a CVSS base score of 10 (critical). CISA confirmed real-world exploitation by adding it to the Known Exploited Vulnerabilities catalog on 2026-02-25.
From the source record: A vulnerability in the peering authentication in Cisco Catalyst SD-WAN Controller, formerly SD-WAN vSmart, and Cisco Catalyst SD-WAN Manager, formerly SD-WAN vManage, could allow an unauthenticated, remote attacker to bypass authentication and obtain administrative privileges on an affected system.
This vulnerability exists because the peering authentication mechanism in an affected system is not working properly. An attacker could exploit this vulnerability by sending crafted requests to an affected system. A successful exploit could allow the attacker to log in to an affected Cisco Cataly...
Why it matters in practice: KEV-listed CVEs draw continuous internet-wide scanning. Any unpatched, internet-reachable installation is on borrowed time. The blast radius depends on how the affected service is exposed. An internet-facing instance with no compensating controls is the highest-risk configuration.
Am I affected?
You are affected if your installation of Cisco Catalyst SD-WAN Manager matches a version listed in the Affected row above.
From the device CLI:
show version
show inventory
How to fix CVE-2026-20127
Apply the vendor patch. Target the patched build listed on the vendor advisory. The runnable command set below covers the most common deployment patterns for Cisco Catalyst SD-WAN Manager.
Cisco IOS / IOS XE / NX-OS
! Copy the patched image to flash and boot it
copy tftp: flash:
configure terminal
boot system flash:<patched-image.bin>
end
write memory
reload
! After reload, confirm:
show version | include System image|Version
Cisco install-mode (IOS XE)
install add file flash:<patched-image.bin> activate commit
After applying the patch
- Restart the service or device so the patched binary loads.
- Confirm the running version matches the Fixed in row using the verification command below.
- Rotate credentials and API keys that the affected service could access if the asset was exposed during the disclosure window.
If you can't patch immediately
Until the patch lands, narrow the attack surface with these runnable controls.
Restrict management-plane exposure
Block public access to the admin interface at the perimeter. Allow only trusted jump hosts and bastion IPs.
# Cisco IOS example: ACL on the management VTY
configure terminal
ip access-list standard MGMT-ACL
permit 10.10.10.0 0.0.0.255
deny any log
line vty 0 4
access-class MGMT-ACL in
end
write memory
On Linux jump hosts in front of the appliance, drop traffic from anything outside the admin range:
sudo iptables -A INPUT -p tcp --dport 443 -s 10.10.10.0/24 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 443 -j DROP
sudo iptables-save | sudo tee /etc/iptables/rules.v4
Mitigations are temporary. Apply the vendor patch as soon as a maintenance window opens.
How to verify the fix worked
Confirm the patched build is the one actually running.
show version | include System image|Version
show inventory
Expected: the running version matches See vendor advisory.
Also worth doing: pull recent log windows for any indicators of compromise listed in the vendor advisory, and re-run an authenticated vulnerability scan with up-to-date signatures.
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2026-20087: Cisco Enterprise NFV Infrastructure Software (Bundle Sibling) — Cisco Enterprise NFV Infrastructure Software (Bundle Sibling)
- How to Fix CVE-2026-20025: Integer overflow in Cisco Secure Firewall Adaptive Security Appliance (ASA). — Integer overflow in Cisco Secure Firewall Adaptive Security Appliance (ASA).
- How to Fix CVE-2026-20129: Authentication bypass in Cisco Catalyst SD-WAN Manager , Authentication bypass in Cisco Catalyst SD-WAN Manager
- How to Fix CVE-2026-20034: Path Traversal: ' in Cisco Unity Connection , Path Traversal: ' in Cisco Unity Connection
- How to Fix CVE-2026-20013: Missing release of memory after effective lifetime in Cisco Secure Firewall. , Missing release of memory after effective lifetime in Cisco Secure Firewall.
Is CVE-2026-20127 being exploited in the wild?
Yes. CISA added CVE-2026-20127 to the Known Exploited Vulnerabilities catalog on 2026-02-25. KEV listing means at least one confirmed real-world exploitation report exists.
Do I have to take downtime to patch?
For most Cisco Catalyst SD-WAN Manager deployments, the patched build needs a service restart or device reboot. HA pairs and clusters can roll the upgrade by patching the standby first, failing over, then patching the former primary.
Will a WAF or IDS rule alone close CVE-2026-20127?
No. Network filters cut down opportunistic scans but they do not remove the flaw. The vendor patch is the only durable fix.
Why is CVE-2026-20127 rated critical?
The CVSS base score of 10 reflects network reach, low attack complexity, and high impact on confidentiality, integrity, and availability. That combination is what the rating model maps to critical.
References
- Official vendor advisory: https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-sdwan-rpa-EHchtZk
- NVD entry: https://nvd.nist.gov/vuln/detail/CVE-2026-20127
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- CISA KEV entry: "Cisco Catalyst SD-WAN Controller and Manager Authentication Bypass Vulnerability" - added 2026-02-25, due 2026-02-27
*Assembled from the official vendor advisory, the NVD record, and the CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*