CVE-2026-13385 Overview
CVE-2026-13385 is an improper certificate validation vulnerability [CWE-295] affecting certain ASUS router models. The firmware fails to properly validate integrity check values and TLS certificates when downloading resources from remote servers. A network-positioned attacker can intercept these requests, spoof the legitimate server, and instruct the router to download and execute arbitrary commands. The flaw combines two weaknesses: missing integrity verification of downloaded content and inadequate certificate chain validation. Successful exploitation grants the attacker code execution on the router with elevated privileges, compromising all traffic traversing the device. ASUS has published guidance under the Security Update for ASUS Router Firmware section of its security advisory.
Critical Impact
A remote man-in-the-middle attacker can execute arbitrary commands on affected ASUS routers by spoofing a trusted update or resource server, gaining full control over the device and connected network traffic.
Affected Products
- Certain ASUS router models (specific SKUs listed in the ASUS Security Advisory)
- ASUS router firmware versions prior to the vendor-provided security update
- Deployments where the router communicates with ASUS-hosted services over untrusted network paths
Discovery Timeline
- 2026-07-15 - CVE-2026-13385 published to the National Vulnerability Database (NVD)
- 2026-07-16 - Last updated in NVD database
Technical Details for CVE-2026-13385
Vulnerability Analysis
The vulnerability stems from two flaws that compound each other. The router firmware retrieves resources from remote servers without properly validating the server certificate chain, and it does not verify integrity check values on the downloaded payloads. An attacker who can position themselves between the router and the legitimate server can present a spoofed TLS certificate that the firmware accepts. The router then downloads attacker-controlled content and processes it as trusted, ultimately executing arbitrary commands. Because routers operate as the network gateway, code execution on the device exposes every downstream client to interception, redirection, and further compromise.
Root Cause
The root cause is a combination of Improper Certificate Validation [CWE-295] and missing integrity verification of downloaded artifacts. The firmware either skips certificate chain validation, accepts self-signed certificates, or fails to verify the hostname against the certificate subject. In parallel, the download routine does not enforce cryptographic hash or signature checks on the fetched content, so tampered payloads are executed without detection.
Attack Vector
Exploitation requires network-adjacent positioning to intercept traffic between the router and its remote server. Attackers on the same network path — such as compromised upstream infrastructure, a rogue ISP, DNS hijacking, or BGP manipulation — can redirect the router's outbound request to an attacker-controlled endpoint. The spoofed server responds with a malicious payload that the router downloads and executes. No authentication or user interaction on the router is required. The vulnerability is described in the ASUS Security Advisory.
Detection Methods for CVE-2026-13385
Indicators of Compromise
- Unexpected outbound connections from the router to unknown IP addresses or domains outside ASUS-owned infrastructure
- New or modified files, cron jobs, or startup scripts on the router filesystem
- Anomalous DNS responses that resolve ASUS service hostnames to non-ASUS IP ranges
- Unusual CPU or memory utilization patterns on the router indicating background processes
Detection Strategies
- Inspect network telemetry for TLS sessions to router-update endpoints that terminate at unexpected certificate authorities or IP addresses
- Monitor for downloaded binaries or scripts on router storage that lack valid ASUS signatures
- Correlate router log entries showing certificate errors or fallback to plaintext downloads with subsequent command execution events
Monitoring Recommendations
- Enable and centralize router syslog forwarding to a SIEM for retention and correlation
- Baseline outbound router traffic and alert on deviations, particularly to newly registered or non-vendor domains
- Deploy network-level TLS inspection on egress paths to identify certificate anomalies affecting embedded devices
How to Mitigate CVE-2026-13385
Immediate Actions Required
- Apply the firmware update referenced in the ASUS Security Advisory to all affected router models without delay
- Audit administrative and remote access settings on the router and disable any services not required for operation
- Rotate administrative credentials and Wi-Fi pre-shared keys after patching, in case the device was previously compromised
Patch Information
ASUS has released firmware updates addressing this vulnerability. Refer to the Security Update for ASUS Router Firmware section of the ASUS Security Advisory for the list of affected models and corresponding fixed firmware versions. Download updates only from official ASUS support channels and verify the firmware image before flashing.
Workarounds
- Restrict the router's outbound connectivity to known ASUS service endpoints using upstream firewall rules where feasible
- Use trusted, encrypted DNS resolvers to reduce the risk of DNS-based redirection facilitating MITM attacks
- Isolate management interfaces on a dedicated VLAN and disable remote WAN administration until the firmware update is applied
# Configuration example: block router outbound traffic except to trusted ASUS update hosts
# Apply on the upstream firewall, replacing <router_ip> and hostnames as appropriate
iptables -A FORWARD -s <router_ip> -p tcp --dport 443 -d dlcdnets.asus.com -j ACCEPT
iptables -A FORWARD -s <router_ip> -p tcp --dport 443 -j DROP
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

