How to Fix CVE-2026-20122: Security Vulnerability in Cisco Catalyst SD-WAN Manager
By Sai Kiran Pandrala
| Severity | CVSS 5.4 - Medium |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2026-04-20) |
| 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-648: Incorrect Use of Privileged APIs |
Patch immediately. CISA added CVE-2026-20122 to the Known Exploited Vulnerabilities catalog on 2026-04-20. Federal civilian agencies must remediate by 2026-04-23. Treat every internet-reachable instance as a priority patch.
What is CVE-2026-20122?
CVE-2026-20122 is a Security Vulnerability flaw in Cisco Catalyst SD-WAN Manager. It carries a CVSS base score of 5.4 (medium). CISA confirmed real-world exploitation by adding it to the Known Exploited Vulnerabilities catalog on 2026-04-20.
From the source record: A vulnerability in the API of Cisco Catalyst SD-WAN Manager could allow an authenticated, remote attacker to overwrite arbitrary files on the local file system. To exploit this vulnerability, the attacker must have valid read-only credentials with API access on the affected system.
This vulnerability is due to improper file handling on the API interface of an affected system. An attacker could exploit this vulnerability by uploading a malicious file on the local file system. A successful exploit could allow the attacker to overwrite arbitrary files on the affected system and gain vmana...
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-20122
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-20128: Security Vulnerability in Cisco Catalyst SD-WAN Manager — Security Vulnerability in Cisco Catalyst SD-WAN Manager
- How to Fix CVE-2026-20016: Improper neutralization of argument delimiters in a command ('argument injection'). — Improper neutralization of argument delimiters in a command ('argument injection').
- How to Fix CVE-2026-20094: Cisco Integrated Management Controller Command Injection , Cisco Integrated Management Controller Command Injection
- How to Fix CVE-2026-20082: Missing release of resource after effective lifetime in Cisco Secure Firewall. , Missing release of resource after effective lifetime in Cisco Secure Firewall.
- How to Fix CVE-2026-20065: Improper locking in Cisco Secure Firewall Threat Defense (FTD) Software , Improper locking in Cisco Secure Firewall Threat Defense (FTD) Software
Is CVE-2026-20122 being exploited in the wild?
Yes. CISA added CVE-2026-20122 to the Known Exploited Vulnerabilities catalog on 2026-04-20. 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-20122?
No. Network filters cut down opportunistic scans but they do not remove the flaw. The vendor patch is the only durable fix.
How quickly should I act on CVE-2026-20122?
Within the standard patch cycle if the asset is internal-only. Inside one to two weeks for any internet-facing instance, sooner if compensating controls are not in place.
References
- Official vendor advisory: https://sec.cloudapps.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-sdwan-authbp-qwCX8D4v
- NVD entry: https://nvd.nist.gov/vuln/detail/CVE-2026-20122
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- CISA KEV entry: "Cisco Catalyst SD-WAN Manager Incorrect Use of Privileged APIs Vulnerability" - added 2026-04-20, due 2026-04-23
*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.*