CVE-2026-20245: Cisco Catalyst SD-WAN Manager Root Privilege Escalation Zero-Day

·

On June 5, 2026, Cisco disclosed CVE-2026-20245 — an actively exploited zero-day in Cisco Catalyst SD-WAN Manager (formerly SD-WAN vManage). The flaw allows a local attacker with netadmin-level access to execute arbitrary commands as root by uploading a crafted file to the system. Mandiant, Google Cloud's cybersecurity subsidiary, discovered and reported the in-the-wild exploitation.

Cisco confirmed limited observed cases where exploitation resulted in configuration changes being pushed to downstream edge devices — meaning a compromised SD-WAN Manager can be weaponised to poison the network configuration of every device it manages. No direct patch exists for CVE-2026-20245; Cisco advises upgrading to the May 14 build that addressed related CVE-2026-20182.

This is at least the fifth Catalyst SD-WAN vulnerability under active exploitation in 2026. CISA has tagged 90 Cisco vulnerabilities as actively exploited over the past several years, four of them in SD-WAN Manager.

◈ Table of Contents

01 Affected Products & CVSS 02 Exploitation Details 03 IOCs & Active Exploitation Evidence 04 The SD-WAN CVE Chain 05 Detection & Hunting 06 Mitigation & Patching 07 MITRE ATT&CK Mapping 08 Sources
📋

Affected Products & CVSS

PHASE 01
FieldDetail
CVE IDCVE-2026-20245
CVSS Score7.8 HIGH (AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H)
CWECWE-116 (Improper encoding/escaping of output)
ProductCisco Catalyst SD-WAN Manager (formerly SD-WAN vManage)
DeploymentsOn-Prem, Cisco SD-WAN Cloud-Pro, Cisco SD-WAN Cloud (Cisco Managed), Cisco SD-WAN for Government (FedRAMP)
PublishedJune 4, 2026
ExploitationACTIVELY EXPLOITED
ReporterMandiant (Google Cloud)
Patch statusNo direct patch for CVE-2026-20245; May 14 build addresses related CVE-2026-20182
⚔️

Exploitation Details

PHASE 02
02
Attack Flow: Crafted File to Root
ATTACK CHAIN
Insufficient validation of user-supplied input in the Catalyst SD-WAN Manager CLI allows command injection via a crafted file upload. The attacker needs netadmin-level credentials, which can be obtained through companion vulnerabilities CVE-2026-20182 or CVE-2026-20127.
Exploitation Steps
  • 1
    Obtain netadmin credentials — via CVE-2026-20182 (max-severity auth bypass), CVE-2026-20127 (auth bypass exploited since 2023), credential theft, or legitimate insider access.
  • 2
    Upload crafted file to SD-WAN Manager — the file exploits CWE-116 insufficient output encoding in the CLI, embedding command injection payloads in a CSV or configuration file accepted by the vConfd subsystem.
  • 3
    CLI processes file, triggers command injection — the vconfd_script_upload_tenant_list.sh script processes the malicious file, executing attacker-controlled commands as root.
  • 4
    Root-level code execution — attacker now has unrestricted control over the SD-WAN Manager instance, which manages up to 6,000 Catalyst SD-WAN edge devices from a single console.
  • 5
    Push malicious config to edge devices — Cisco confirmed limited observed cases where exploitation resulted in configuration changes being pushed to edge devices across the managed network.
🔬

IOCs & Active Exploitation Evidence

PHASE 03
03
Log-Based IOCs Shared by Cisco
IOC
Cisco PSIRT shared a specific log pattern to help defenders identify whether their SD-WAN Manager instance has been exploited. Check /var/log/scripts.log for entries matching the pattern below.
Indicator of Compromise — /var/log/scripts.log
# Suspicious upload of tenant list data to vSmart controller # Look for malicious.csv or unexpected file paths in this command Apr 15 09:44:57 vmanage vScript: Tenant list upload per vsmart serial number: /usr/bin/vconfd_script_upload_tenant_list.sh -cli path /home/admin/malicious.csv vpn 0 # Legitimate example (vendor config file, known path): Apr 15 09:44:57 vmanage vScript: Tenant list upload per vsmart serial number: /usr/bin/vconfd_script_upload_tenant_list.sh -cli path /opt/cisco/sdwan/etc/tenantlist.csv vpn 0 # Red flags: unusual file paths, /home/ or /tmp/ directories, unexpected timing

Cisco has observed confirmed exploitation since at least April 2026 based on log timestamps. Any SD-WAN Manager instance that has not been upgraded to the May 14 release should be considered potentially compromised — collect admin-tech files for TAC review immediately.

🔗

The Cisco SD-WAN CVE Chain

PHASE 04

CVE-2026-20245 is the latest in a sustained campaign of SD-WAN Manager vulnerabilities being exploited in the wild. Attackers can chain earlier CVEs to gain initial netadmin access required to trigger CVE-2026-20245.

CVETypeStatusNotes
CVE-2026-20245Command Injection / Root EscalationEXPLOITEDNo patch — current target
CVE-2026-20182Auth Bypass (Max Severity)EXPLOITEDPatched May 14, 2026; can be chained to reach netadmin
CVE-2026-20127Auth Bypass (Critical)EXPLOITED since 2023Patched Mar 2026
CVE-2026-20133Information DisclosureEXPLOITEDCISA flagged Apr 2026; patched Feb 2026
CVE-2026-20128UndisclosedEXPLOITEDFlagged late May 2026
CVE-2026-20122UndisclosedEXPLOITEDFlagged late May 2026
🔍

Detection & Hunting

PHASE 05
05
Hunt Queries for SD-WAN Manager Compromise
DETECTION
Bash — Check for CVE-2026-20245 IOC in logs
# Run on SD-WAN Manager host $ grep "vconfd_script_upload_tenant_list" /var/log/scripts.log | grep -v "/opt/cisco/" # Flag any result where the -cli path argument points outside /opt/cisco/sdwan/ # Check for unexpected root shell spawns $ grep "su\|sudo\|bash\|sh -i" /var/log/audit/audit.log | grep auid=0 # Check for recent file uploads by netadmin accounts $ grep "vScript" /var/log/scripts.log | awk 'NR>=NR-100' | tail -50
Cisco IOS-XE / vManage — Syslog SIEM Rule
# Sigma-style detection for SIEM ingestion title: Cisco SD-WAN CVE-2026-20245 Exploitation Attempt logsource: product: cisco service: sdwan-manager detection: keywords: - 'vconfd_script_upload_tenant_list' filter_legit: CommandLine|contains: - '/opt/cisco/sdwan/etc/' condition: keywords and not filter_legit level: high

Cisco recommends collecting admin-tech files before contacting TAC, as these capture the state needed to confirm compromise. Command: request admin-tech file-name /tmp/admin-tech-$(date +%Y%m%d).tar.gz

🛠️

Mitigation & Patching

PHASE 06
06
Immediate Defensive Actions
REMEDIATION
No direct patch exists for CVE-2026-20245. Cisco recommends upgrading to the May 14 software build (which addresses chaining prerequisite CVE-2026-20182) and verifying edge device configurations were not tampered with.
Actions in Priority Order
  • 1
    Upgrade to May 14 Cisco SD-WAN release — this addresses CVE-2026-20182, eliminating the primary auth-bypass prerequisite for chaining to CVE-2026-20245.
  • 2
    Check /var/log/scripts.log for the IOC pattern above. Any non-standard file path in the vconfd_script_upload command warrants immediate incident response.
  • 3
    Audit edge device configurations — compare running config on all managed Catalyst SD-WAN devices against your known-good baseline to identify any malicious config pushes from the Manager.
  • 4
    Restrict netadmin access — implement IP allowlisting for SD-WAN Manager management plane access; disable netadmin accounts not in active use.
  • 5
    Open a case with Cisco TAC if you suspect compromise — collect admin-tech files first per Cisco's guidance at the remediation documentation URL.
🎯

MITRE ATT&CK Mapping

PHASE 07
TechniqueIDNotes
Valid AccountsT1078Attacker requires netadmin credentials — obtained via companion auth-bypass CVEs
Exploitation for Privilege EscalationT1068CVE-2026-20245 is the escalation vector: netadmin → root
Command and Scripting InterpreterT1059Crafted file triggers command injection in vconfd CLI subsystem
Impair Defenses / Modify NetworkT1562 / T1565Malicious config pushed to up to 6,000 edge devices via Manager
Ingress Tool TransferT1105Crafted CSV/config file uploaded to trigger exploit
📚

Sources & References

PHASE 08
Cisco Security Advisory — CVE-2026-20245 (cisco-sa-sdwan-privesc-4uxFrdzx) NVD — CVE-2026-20245 Record (CVSS 7.8 HIGH) BleepingComputer — Cisco warns of unpatched SD-WAN zero-day exploited in attacks Cisco — Remediate Catalyst SD-WAN Security (admin-tech collection guide) Cisco Security Advisory — Related SD-WAN vulnerabilities (CVE-2026-20182)

Scan Your Network for SD-WAN Exposure — CyberHawk's IOC Scanner can help identify network management endpoints and Cisco SD-WAN Manager instances with potential exposure. Use it alongside Cisco's admin-tech collection to triage potential compromise.

→ CyberHawk IOC Scanner  |  → Active Threat Dashboard

◈ Stay Connected

Follow CyberHawk Threat Intel for threat intelligence, deployment guides and hands-on SOC tooling content.

🌐 Website ▶️ YouTube ▶️ YouTube (2) 𝕏 Twitter / X ♪ TikTok ✈️ Telegram
🔍 IOC Scanner 🛠️ Live Tools 📚 Courses 🚨 Threat Intel 📝 Blog 📋 SOPs

"They can't exploit you if you are the Exploit."