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 — New vulnerability found in Docker. Credit for finding the vulnerability goes to Felix Boulet | Kitploit
Tools/GitHubGitHub/j3r1ch0123/cve-2025-9074
Container SecurityVulnerability AnalysisExploitationMisconfigurationLearning & EducationLabs & Practice
GitHubj3r1ch0123/cve-2025-9074

CVE-2025-9074

New vulnerability found in Docker. Credit for finding the vulnerability goes to Felix Boulet

View Repository
831 year 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 - Docker Remote API (Lab PoC)

⚠️ Disclaimer:
This repository is for educational and research purposes only.
Do not use this code outside of a controlled environment that you own.
The author is not responsible for misuse.


Overview

This repository contains a proof-of-concept (PoC) for CVE-2025-9074, a misconfiguration vulnerability involving the Docker Remote API.
When the Docker daemon was exposed without authentication, an attacker could issue API requests to create and start containers.

This PoC demonstrates the issue in a safe and controlled environment.
Note: This vulnerability has been patched.


Original Write-Up

Credit for the original research and write-up goes to:
🔗 qwertysecurity.com – Blog Post

This repository adapts that work into a Python PoC for easier testing in lab environments.


How it Works

  • The script interacts with the Docker Remote API over HTTP.
  • It creates a new container with a specified command.
  • The container is then started via the API.

The vulnerability existed if the Docker daemon was listening on tcp://0.0.0.0:2375 without TLS or authentication.


Usage

1. Run Docker with the API exposed (lab only)

root@kitploit:~
dockerd -H tcp://0.0.0.0:2375
Download Tool