PHP
VulnLab
Section titled “VulnLab”- Description: A web vulnerability lab developed in PHP.
- Source Code: https://github.com/vulnerable-apps/VulnLab
- Findings: Cross-Site Scripting (Reflected), SQL Injection, Relative Path Confusion.
- Credentials: None
git clone https://github.com/vulnerable-apps/VulnLabcd VulnLab
# Run the application# Option 1: Use the pre-built containerdocker run --name vulnlab -d -p 1337:80 yavuzlar/vulnlab:latest
# Option 2: Build the containerdocker build -t yavuzlar/vulnlab .docker run -d -p 1337:80 --name vulnlab yavuzlar/vulnlab
# Run the scannightvision target create vulnlab http://localhost:1337 --type webnightvision scan vulnlab
# Stop the containerdocker stop vulnlabdocker rm vulnlab