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
homelab-CVE-2025-68613 — Docker Compose-based homelab environment for testing and exploiting CVE-2025-68613, with n8n workflow automation for security experimentation. | Kitploit
Tools/GitHubGitHub/dlanang/homelab-cve-2025-68613
Vulnerability AnalysisExploitationPenetration TestingLearning & EducationLabs & Practice
GitHubdlanang/homelab-cve-2025-68613

homelab-CVE-2025-68613

Docker Compose-based homelab environment for testing and exploiting CVE-2025-68613, with n8n workflow automation for security experimentation.

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

How to Use Docker Compose for This Project

This guide explains how to install Docker Compose and run the project using the provided docker-compose.yml file.

Prerequisites

  • Docker must be installed on your system. See the official Docker installation guide for instructions.

Installing Docker Compose

Docker Compose is included by default with Docker Desktop and Docker Engine v20.10.0 and later. You can check if it is available by running:

root@kitploit:~
docker compose version

If you see a version number, Docker Compose is installed. If not, follow the official Docker Compose installation guide for your operating system.

Running the Project

  1. Clone this repository and navigate to the project directory:

    root@kitploit:~
    git clone https://github.com/Dlanang/homelab-CVE-2025-68613.git
    cd homelab-CVE-2025-68613
    
  • Start the services using Docker Compose:

    root@kitploit:~
    docker compose up -d
    

    This command will download the required images (if not already present), create the containers, and start the services in detached mode.

  • Verify the services are running:

    root@kitploit:~
    docker compose ps
    
  • Access the n8n application: Open your browser and go to: http://localhost:5678

  • Stopping the services: To stop the running containers, use:

    root@kitploit:~
    docker compose down
    
  • Notes

    • Make sure port 5678 is not in use by another application.
    • Data is persisted in the data/n8n directory as configured in the docker-compose.yml file.

    For more information, see the Docker Compose documentation.

    Download Tool