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-64424-Coolify- | Kitploit
Tools/GitHubGitHub/androidteacher/cve-2025-64424-coolify-
Container SecurityVulnerability AnalysisExploitationWeb Application ExploitationCTFPenetration TestingLearning & EducationLabs & Practice

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
GitHub
androidteacher/cve-2025-64424-coolify-

CVE-2025-64424-Coolify-

View Repository
15 months agoNot yet reviewed

Coolify CVE-2025-64424 RCE Vulnerability Lab

Lesson Plan: Red74-Coolio-CVE-2025-64424

Disclaimer: This repository contains a deliberately vulnerable version of Coolify and is intended for educational purposes, CTF environments, and cybersecurity training. Do not deploy this in a production environment or expose it to the public internet.

This lab provides a local, containerized environment to safely learn about and exploit the Command Injection / Remote Code Execution (RCE) vulnerability (CVE-2025-64424 / GHSA-qx24-jhwj-8w6x) found in the Git repository source fields of Coolify versions prior to 4.0.0-beta.420.7.


🚀 Lab Deployment Instructions

This lab is a multi-container application that relies on backend services like PostgreSQL, Redis, and a custom host agent to function correctly. It must be deployed using Docker Compose.

1. Clone the Repository

Clone this exact repository to your local machine (or the server hosting the CTF lab):

root@kitploit:~
git clone https://github.com/joshbeck2024/ctf-coolify-cve-2025-64424-rce.git
cd ctf-coolify-cve-2025-64424-rce

2. Start the Vulnerable Environment

Navigate to the lab directory and build/start the multi-container stack in detached mode:

root@kitploit:~
cd lab
docker compose up --build -d

Once the containers are successfully running, the vulnerable Coolify web interface will be accessible at: 👉 http://localhost:10005

3. Stop the Environment

To safely stop the lab environment without destroying your deployment configurations or database state, run:

root@kitploit:~
cd lab
docker compose down

4. Restarting / Full Factory Reset

If you make a mistake, or simply want to completely wipe the lab back to a pristine, clean state (removing all volumes, SSH keys, and database data), run the following:

root@kitploit:~
cd lab
docker compose down -v
docker compose up --build -d

📚 Solutions & Documentation

Detailed explanations of the vulnerability, the technical breakdown of the source code flaw, and step-by-step solutions for exploiting the RCE to retrieve the secret flag (/flag/flag.txt) can be found in the Walkthrough/ directory.

Download Tool