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-2025-9074-PoC-Bash | Kitploit
Tools/GitHubGitHub/pppxo/cve-2025-9074-poc-bash
Vulnerability AnalysisExploitationPenetration TestingCloud SecurityRed TeamingContainer Escape
GitHubpppxo/cve-2025-9074-poc-bash

CVE-2025-9074-PoC-Bash

View Repository
18 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-2025-9074-PoC-Bash

The original PoC is: https://github.com/j3r1ch0123/CVE-2025-9074. This is new PoC in bash since not all docker containers has python installed, and mostly this should be run from inside a container.

Steps

From inside the container use the following to find vulnerable docker API:

root@kitploit:~
for ip in 172.18.0.1 172.17.0.1 192.168.65.7; do
    (echo > /dev/tcp/$ip/2375 2>/dev/null && echo "[+] $ip:2375 open") || :
done

Use this bash script as the following:

root@kitploit:~
$ ./cve-2025-9074-poc.sh <IP> <PORT> <CMD>

The script will create new docker image mount the host Windows C directory to /host_root/ directory, start the image, then execute the command (which is probably something you need to exploit by reading sensitive files from the host).

The following shows listing the mounted '/host_root/' directory: image

Download Tool