CVE-2025-70644
📋 TL;DR
Tenda AX-1806 routers running firmware v1.0.0.1 contain a stack overflow vulnerability in the time parameter handling. Attackers can exploit this to cause Denial of Service (DoS) by sending specially crafted requests. This affects all users of Tenda AX-1806 routers with the vulnerable firmware version.
💻 Affected Systems
- Tenda AX-1806
📦 What is this software?
⚠️ Risk & Real-World Impact
Worst Case
Complete router crash requiring physical reboot, potential remote code execution if stack overflow can be controlled to execute arbitrary code
Likely Case
Router becomes unresponsive, requiring reboot to restore functionality, disrupting network connectivity
If Mitigated
Limited impact if router is behind firewall with restricted WAN access and proper network segmentation
🎯 Exploit Status
Public GitHub repository contains proof-of-concept code demonstrating the vulnerability
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Unknown
Vendor Advisory: Unknown
Restart Required: Yes
Instructions:
1. Check Tenda official website for firmware updates
2. If update available, download and install via router web interface
3. Reboot router after installation
4. Verify firmware version is no longer v1.0.0.1
🔧 Temporary Workarounds
Restrict WAN Access
allConfigure firewall to block external access to router management interface
Network Segmentation
allIsolate router management interface to trusted network segment only
🧯 If You Can't Patch
- Replace vulnerable router with different model or updated version
- Implement strict network access controls to limit exposure to the router
🔍 How to Verify
Check if Vulnerable:
Access router web interface, navigate to System Status or About page, check firmware version
Check Version:
curl -s http://router-ip/status.cgi | grep version
Verify Fix Applied:
Confirm firmware version is no longer v1.0.0.1 after update
📡 Detection & Monitoring
Log Indicators:
- Router crash/reboot logs
- Unusual traffic patterns to router management interface
- Multiple failed connection attempts
Network Indicators:
- Unusual HTTP requests to router management interface with malformed time parameters
- Sudden loss of connectivity from router
SIEM Query:
source="router_logs" AND (event="crash" OR event="reboot") OR (http_request CONTAINS "/cgi-bin/" AND http_request CONTAINS "time=")