CVE-2025-11122

8.8 HIGH

📋 TL;DR

A stack-based buffer overflow vulnerability in Tenda AC18 routers allows remote attackers to execute arbitrary code by sending specially crafted requests to the /goform/WizardHandle endpoint. This affects Tenda AC18 routers running firmware version 15.03.05.19. The vulnerability is remotely exploitable without authentication.

💻 Affected Systems

Products:
  • Tenda AC18
Versions: 15.03.05.19
Operating Systems: Embedded router firmware
Default Config Vulnerable: ⚠️ Yes
Notes: Affects the specific firmware version; other versions may also be vulnerable but unconfirmed.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete device compromise leading to persistent backdoor installation, network traffic interception, lateral movement to other devices, and botnet recruitment.

🟠

Likely Case

Remote code execution allowing attacker to modify router settings, intercept traffic, or use the device as a pivot point for further attacks.

🟢

If Mitigated

Limited impact if device is behind firewall with restricted WAN access, though internal network exposure remains.

🌐 Internet-Facing: HIGH
🏢 Internal Only: HIGH

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Public exploit code available in GitHub repositories; remote exploitation without authentication makes this highly accessible to attackers.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: Not available

Restart Required: Yes

Instructions:

1. Check Tenda website for firmware updates. 2. If update available, download and install via router admin interface. 3. Reboot router after update.

🔧 Temporary Workarounds

Block WAN access to router admin interface

linux

Prevent external exploitation by restricting access to router management interface

iptables -A INPUT -p tcp --dport 80 -j DROP
iptables -A INPUT -p tcp --dport 443 -j DROP

Disable remote administration

all

Turn off remote management feature in router settings

🧯 If You Can't Patch

  • Isolate affected routers in separate network segment with strict firewall rules
  • Implement network monitoring for suspicious traffic to/from router IP addresses

🔍 How to Verify

Check if Vulnerable:

Check router firmware version via admin interface at 192.168.0.1 or 192.168.1.1

Check Version:

curl -s http://router-ip/goform/GetSysInfo | grep firmware

Verify Fix Applied:

Verify firmware version is no longer 15.03.05.19 and test if /goform/WizardHandle endpoint responds to crafted requests

📡 Detection & Monitoring

Log Indicators:

  • Multiple POST requests to /goform/WizardHandle with abnormal parameter lengths
  • Router reboot events following suspicious requests

Network Indicators:

  • Unusual outbound connections from router IP
  • Traffic patterns suggesting command and control communication

SIEM Query:

source="router.log" AND uri="/goform/WizardHandle" AND (bytes>1000 OR status=500)

🔗 References

📤 Share & Export