
Vulnerable environments paired with ready-to-use Nuclei templates for security testing and learning! 🚀
A comprehensive collection of vulnerable environments paired with ready-to-use Nuclei templates for practical security testing and learning! 🚀

Nuclei-Templates-Labs provides security enthusiasts, researchers, and learners with:
The labs are containerized for safety, allowing you to experiment without the risks associated with real-world vulnerability exploitation.
git clone https://github.com/projectdiscovery/nuclei-templates-labs.git
cd nuclei-templates-labs
# Install Docker
sudo apt update && sudo apt install docker.io -y
# Install Docker Compose
sudo apt install docker-compose -y
# Optional: Run Docker without sudo
sudo usermod -aG docker $USER
newgrp docker
Verify installation:
docker --version
docker-compose --version
The repository structure categorizes labs by vulnerability types and protocols:
# List all categories
ls -la
# Navigate and explore labs
cd http/cves/2024/
ls
Each lab contains:
docker-compose.yml for setupREADME.md explaining the vulnerabilityNavigate to your chosen lab and launch the environment:
cd http/cves/2024/CVE-2024-55416
docker-compose up -d
Verify your environment:
docker-compose ps
docker-compose logs
Lab interfaces or services typically run on localhost ports documented in each lab's README.
Install Nuclei using Go:
go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@latest
Or use pre-built binaries:
wget https://github.com/projectdiscovery/nuclei/releases/download/v3.0.0/nuclei_3.0.0_linux_amd64.zip
unzip nuclei_3.0.0_linux_amd64.zip
chmod +x nuclei
sudo mv nuclei /usr/local/bin/
Verify Nuclei installation:
nuclei -version
Execute vulnerability scans using the provided templates:
nuclei -t cve-2024-55416.yaml -u http://localhost:8080
Detailed scans and results saving:
nuclei -t cve-2024-55416.yaml -u http://localhost:8080 -v
nuclei -t cve-2024-55416.yaml -u http://localhost:8080 -o scan-results.txt
We encourage community contributions! You can:
Fork the repository, make your changes, and submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
Happy hacking! ⚙️