
Docker Compose-based homelab environment for testing and exploiting CVE-2025-68613, with n8n workflow automation for security experimentation.
This guide explains how to install Docker Compose and run the project using the provided docker-compose.yml file.
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:
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.
Clone this repository and navigate to the project directory:
git clone https://github.com/Dlanang/homelab-CVE-2025-68613.git
cd homelab-CVE-2025-68613
Start the services using Docker Compose:
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:
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:
docker compose down
data/n8n directory as configured in the docker-compose.yml file.For more information, see the Docker Compose documentation.