Skip to main content
CVE Vulnerability Database
Vulnerability Database/CVE-2026-71987

CVE-2026-71987: MSI Radix AXE6600 Router RCE Vulnerability

CVE-2026-71987 is a command injection flaw in MSI Radix AXE6600 router firmware v781521 that enables attackers to execute arbitrary commands and gain root privileges. This article covers technical details, impact, and mitigation.

Published:

CVE-2026-71987 Overview

CVE-2026-71987 is a command injection vulnerability [CWE-78] in the MSI Radix AXE6600 Wi-Fi 6E router running firmware version v781521. The flaw resides in the alg function, which fails to sanitize user-supplied input before passing it to a system shell. Remote unauthenticated attackers can inject arbitrary operating system commands and obtain root privileges on the underlying Linux system. The vulnerability is network-reachable, requires no authentication, and no user interaction, making it suitable for automated exploitation against exposed devices.

Critical Impact

Remote attackers can execute arbitrary commands as root on affected MSI Radix AXE6600 routers, enabling full device takeover, traffic interception, and lateral movement into the internal network.

Affected Products

  • MSI Radix AXE6600 Wi-Fi 6E Tri-Band Gaming Router
  • Firmware version v781521
  • Devices exposing the vulnerable alg function to the network

Discovery Timeline

  • 2026-08-09 - CVE-2026-71987 published to NVD
  • 2026-08-10 - Last updated in NVD database

Technical Details for CVE-2026-71987

Vulnerability Analysis

The vulnerability is a classic OS command injection issue [CWE-78] within the router's alg (Application Layer Gateway) function. The function accepts attacker-controlled input and concatenates it into a shell command string that is executed by the underlying operating system. Because the input is not validated, sanitized, or passed through a safe execution API, shell metacharacters such as ;, |, `, and $() are interpreted by the shell.

Successful exploitation grants root-level command execution on the router. From this position, an attacker can modify firmware, install persistent implants, pivot to internal hosts, alter DNS settings, intercept traffic, or enroll the device into a botnet. The router's role as the network gateway amplifies the impact across every connected client.

Root Cause

The root cause is improper neutralization of special elements used in an OS command. The alg function trusts remote input and forwards it into a shell invocation without escaping or allow-list validation. This pattern typically appears when developers use functions like system(), popen(), or exec shell variants with dynamically constructed command strings.

Attack Vector

Exploitation is performed over the network against the router's exposed service handling the alg function. An unauthenticated attacker sends a crafted request containing shell metacharacters within a parameter processed by the alg handler. The injected payload is executed by the router's shell with root privileges. Technical exploitation details are documented in the VulnCheck Advisory for MSI RadiX.

No public proof-of-concept code has been verified for inclusion here. Refer to the vendor and advisory references for reproduction details.

Detection Methods for CVE-2026-71987

Indicators of Compromise

  • Unexpected outbound connections from the router's management interface to unknown IP addresses or command-and-control infrastructure.
  • Unusual DNS resolver changes or altered routing tables on the AXE6600 device.
  • New or modified processes running as root that were not part of the original firmware image.
  • HTTP requests to router endpoints containing shell metacharacters such as ;, |, `, $(), or URL-encoded equivalents in parameters handled by the alg function.

Detection Strategies

  • Inspect network traffic destined for the router's web management interface for request parameters containing shell metacharacters or command primitives such as wget, curl, nc, or sh.
  • Correlate router log entries showing malformed alg requests with subsequent outbound connections from the router itself.
  • Monitor for firmware integrity changes and unauthorized configuration modifications on the AXE6600.

Monitoring Recommendations

  • Ingest router syslog and network flow data into a centralized analytics platform to identify anomalous traffic originating from the gateway.
  • Alert on any inbound connections to the router's administrative services from untrusted networks or the WAN interface.
  • Baseline expected router behavior, including DNS destinations, firmware version, and running services, and alert on deviations.

How to Mitigate CVE-2026-71987

Immediate Actions Required

  • Restrict access to the router's administrative interfaces so they are not reachable from the WAN or untrusted networks.
  • Disable remote management features on the AXE6600 until a vendor patch is applied.
  • Segment the router from sensitive internal assets and monitor traffic traversing the device for signs of compromise.
  • Review the MSI Radix AXE6600 Support Page for firmware updates addressing this issue.

Patch Information

At the time of publication, no fixed firmware version beyond v781521 has been referenced in the NVD entry. Administrators should consult the MSI Official Website and the MSI Radix AXE6600 Support Page for updated firmware releases and apply them as soon as they become available.

Workarounds

  • Block WAN-side access to the router's HTTP and HTTPS management ports using upstream firewall rules where possible.
  • Place the router behind a defense-in-depth boundary and disable Application Layer Gateway features that expose the vulnerable alg function if such a toggle exists in the device configuration.
  • Replace the device with a supported alternative if patched firmware is not made available within an acceptable timeframe.
bash
# Example upstream firewall rule to block external access to router admin ports
iptables -A FORWARD -p tcp -d <router_ip> --dport 80 -i <wan_iface> -j DROP
iptables -A FORWARD -p tcp -d <router_ip> --dport 443 -i <wan_iface> -j DROP

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.