CVE-2026-20133

Information Exposure in A vulnerability in Cisco Catalyst SD-WAN Software could allow an unauthenticated, remote attacker to view sensitive information on an affected system

Verified by Precogs Threat Research
Last Updated: Apr 22, 2026
Base Score
6.5MEDIUM

Executive Summary

CVE-2026-20133 is a medium severity vulnerability affecting pii-secrets. It is classified as Information Exposure. This vulnerability is actively being exploited in the wild.

Precogs AI Insight

"An architectural oversight in Cisco Catalyst SD-WAN allows unauthenticated API access to specific informational endpoints. An external adversary can silently poll these endpoints to exfiltrate sensitive routing metadata, severely undermining network topology secrecy. The Precogs PII & Secrets Scanner immediately detects unauthenticated exposure of sensitive infrastructure data."

Exploit Probability (EPSS)
Low (1.2%)
Public POC
Available
Exploit Probability
Low (<10%)
Public POC
Actively Exploited
Affected Assets
pii secretsCWE-200

What is this vulnerability?

CVE-2026-20133 is categorized as a medium Information Exposure flaw with a CVSS base score of 6.5. Based on our vulnerability intelligence, this issue occurs when the application fails to securely handle untrusted data boundaries.

A vulnerability in Cisco Catalyst SD-WAN Software could allow an unauthenticated, remote attacker to view sensitive information on an affected system.

This vulnerability is due to insufficient file system restrictions. An authenticated attacker with netadmin privileges could exploit this vulnerability by accessing the vshell of an affected system. A successful exploit could allow the attacker to read sensitive information on the underlying operating system.

This architectural defect enables adversaries to bypass intended security controls, directly manipulating the application's execution state or data layer. Immediate strategic intervention is required.

Risk Assessment

MetricValue
CVSS Base Score6.5 (MEDIUM)
Vector StringCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
PublishedFebruary 25, 2026
Last ModifiedApril 22, 2026
Related CWEsCWE-200

Impact on Systems

Credential Theft: Exposed secrets enable unauthorized access to infrastructure, cloud services, and third-party integrations.

Compliance Violation: Leaking PII or credentials may violate GDPR, HIPAA, PCI-DSS, and SOC 2 requirements.

Supply Chain Risk: Compromised credentials in public repositories can propagate to downstream consumers.

How to Fix and Mitigate CVE-2026-20133

  1. Apply Vendor Patches Immediately: This vulnerability is listed in CISA's Known Exploited Vulnerabilities catalog. Please adhere to CISA’s guidelines to assess exposure and mitigate risks associated with Cisco SD-WAN devices as outlines in CISA’s Emergency Directive 26-03 (URL listed below in Notes) and CISA’s “Hunt & Hardening Guidance for Cisco SD-WAN Devices (URL listed below in Notes). Adhere to the applicable BOD 22-01 guidance for cloud services or discontinue use of the product if mitigations are not available.
  2. Verify Patch Deployment: Confirm all instances are updated using Precogs continuous monitoring.
  3. Review Audit Logs: Investigate historical access logs for indicators of compromise related to this attack surface.
  4. Implement Defense-in-Depth: Deploy WAF rules, network segmentation, and endpoint detection to limit blast radius.

Defending with Precogs AI

Precogs PII & Secrets Scanner automatically identifies hardcoded credentials, exposed API keys, and personally identifiable information leaks across repositories, CI/CD pipelines, and deployed artifacts.

Use Precogs to continuously scan your codebase, binaries, APIs, and infrastructure for this vulnerability class and related attack patterns. Our AI-powered detection engine combines static analysis with threat intelligence to identify exploitable weaknesses before attackers do.

Start scanning with Precogs →

Vulnerability Code Signature

Attack Data Flow

StageDetail
SourceApplication error or debug endpoint
VectorVerbose error messages or sensitive metadata returned to the client
SinkHTTP response
ImpactInformation gathering, aids in further attacks

Vulnerable Code Pattern

# ❌ VULNERABLE: Information Exposure
@app.errorhandler(500)
def internal_error(error):
    # Taint sink: returns stack trace to user
    return f"Internal Server Error: {error}", 500

Secure Code Pattern

# ✅ SECURE: Generic error message
@app.errorhandler(500)
def internal_error(error):
    # Log the detailed error internally
    app.logger.error(f"Server Error: {error}")
    # Return a generic message to the user
    return "An internal server error occurred.", 500

How Precogs Detects This

Precogs API Security Engine comprehensively audits all web endpoints to ensure verbose error messages and sensitive metadata are not exposed.\n

Related Vulnerabilitiesvia CWE-200

Is your system affected?

Precogs AI detects CVE-2026-20133 in compiled binaries, LLMs, and application layers — even without source code access.