CVE-2026-20122 Sumo Logic CSE · Sumo

Detect Cisco Catalyst SD-WAN Manager Privileged API Abuse (CVE-2026-20122) in Sumo Logic CSE

Detects exploitation of CVE-2026-20122, a critical vulnerability in Cisco Catalyst SD-WAN Manager involving incorrect use of privileged APIs (CWE-648). This KEV-listed flaw allows attackers to invoke privileged API endpoints without proper authorization, potentially enabling unauthorized configuration changes, credential harvesting, or full SD-WAN infrastructure takeover. Active exploitation has been observed in the wild per CISA Emergency Directive ED-26-03.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Defense Evasion Lateral Movement

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory="cisco/sdwan" OR _sourceCategory="cisco/vmanage" OR _sourceCategory="network/sdwan"
| parse regex "(?P<src_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})" nodrop
| parse regex "(?P<method>GET|POST|PUT|DELETE|PATCH|OPTIONS) (?P<api_path>/dataservice/[^\s]+)" nodrop
| parse regex "HTTP/[\d\.]+\" (?P<status_code>\d{3})" nodrop
| where api_path matches "/dataservice/admin*"
  OR api_path matches "/dataservice/system*"
  OR api_path matches "/dataservice/device/action*"
  OR api_path matches "/dataservice/template*"
  OR api_path matches "/dataservice/settings/configuration*"
  OR api_path matches "/dataservice/certificate*"
  OR api_path matches "/dataservice/aaa*"
| where method in ("POST", "PUT", "DELETE", "PATCH")
| where status_code in ("200", "201", "204")
| timeslice 10m
| count as request_count, dcount(api_path) as unique_api_paths by src_ip, _timeslice
| where request_count >= 3 or unique_api_paths >= 2
| sort by unique_api_paths desc, request_count desc
| fields _timeslice, src_ip, request_count, unique_api_paths
critical severity medium confidence

Sumo Logic query parsing Cisco SD-WAN Manager access logs to identify source IPs making repeated successful privileged API mutations, indicative of CVE-2026-20122 exploitation via unauthorized privileged API invocation.

Data Sources

Cisco SD-WAN Manager access logsHTTP server logs via Sumo Logic collector

Required Tables

cisco/sdwancisco/vmanage

False Positives & Tuning

  • CI/CD pipelines deploying SD-WAN policies using service account credentials with admin API access
  • Third-party network management platforms integrating with SD-WAN Manager via privileged REST calls
  • Cisco TAC-initiated API calls during remote troubleshooting under authorized support sessions

Other platforms for CVE-2026-20122


Testing Methodology

Validate this detection against 4 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 SD-WAN Manager Privileged API Probe

    Expected signal: HTTP GET requests to /dataservice/admin/user, /dataservice/system/information, /dataservice/aaa/usergroup, /dataservice/certificate/list from the test host to port 8443, logged in vManage access logs and network flow.

  2. Test 2Privileged API Admin Account Creation Simulation

    Expected signal: POST to /dataservice/aaa/user with a new username payload logged in vManage audit log, network capture showing the request body containing userName and group fields.

  3. Test 3SD-WAN Manager Template Enumeration and Exfiltration Simulation

    Expected signal: Sequential GET requests to /dataservice/template/device, /dataservice/template/feature, /dataservice/device, and /dataservice/device/action/list within a short timeframe from a single source IP.

  4. Test 4Rapid Privileged API Burst from Single Source

    Expected signal: 21+ HTTP requests across 7 distinct privileged API paths within seconds, all from the same source IP, logged in vManage access logs and network telemetry.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections