CVE-2025-7544

8.8 HIGH

📋 TL;DR

A critical stack-based buffer overflow vulnerability in Tenda AC1206 routers allows remote attackers to execute arbitrary code by manipulating the deviceList parameter in the formSetMacFilterCfg function. This affects users running firmware version 15.03.06.23. Successful exploitation could lead to complete device compromise.

💻 Affected Systems

Products:
  • Tenda AC1206
Versions: 15.03.06.23
Operating Systems: Embedded router firmware
Default Config Vulnerable: ⚠️ Yes
Notes: Vulnerability exists in the web management interface's MAC filtering function. No special configuration required.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Remote code execution leading to full router compromise, credential theft, network traffic interception, and lateral movement into connected devices.

🟠

Likely Case

Router takeover enabling DNS hijacking, credential harvesting, and persistent backdoor installation.

🟢

If Mitigated

Limited impact if routers are behind firewalls with strict inbound filtering and MAC filtering disabled.

🌐 Internet-Facing: HIGH - Routers are typically internet-facing devices with web management interfaces exposed.
🏢 Internal Only: MEDIUM - Internal attackers could exploit if they gain network access, but external exposure is the primary concern.

🎯 Exploit Status

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

Proof-of-concept exploit code is publicly available on GitHub. Attack requires network access to router's web interface.

🛠️ 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 upload via router web interface. 3. Reboot router after update.

🔧 Temporary Workarounds

Disable Remote Management

all

Prevent external access to router web interface

Access router admin panel -> Advanced -> System Tools -> Remote Management -> Disable

Block Web Interface Ports

linux

Firewall rules to block access to router management ports

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

🧯 If You Can't Patch

  • Isolate router on separate VLAN with strict access controls
  • Implement network monitoring for exploit attempts and anomalous traffic

🔍 How to Verify

Check if Vulnerable:

Check router firmware version in web interface: Login -> Advanced -> System Tools -> Firmware Upgrade

Check Version:

curl -s http://router-ip/ | grep -i firmware

Verify Fix Applied:

Verify firmware version is newer than 15.03.06.23

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /goform/setMacFilterCfg
  • Large deviceList parameter values in web logs
  • Router reboot events

Network Indicators:

  • Multiple failed login attempts followed by POST to vulnerable endpoint
  • Unusual outbound connections from router

SIEM Query:

source="router_logs" AND uri="/goform/setMacFilterCfg" AND method="POST" AND size(deviceList)>100

🔗 References

📤 Share & Export