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-24813 — Create lab for CVE-2025-24813 | Kitploit
Tools/GitHubGitHub/alpereny-cs/cve-2025-24813
Container SecurityVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingLearning & EducationLabs & Practice
GitHubalpereny-cs/cve-2025-24813

CVE-2025-24813

Create lab for CVE-2025-24813

View Repository
31 year 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

Apache Tomcat Unauthenticated RCE - CVE-2025-24813

This repository provides a guide and testing environment to assess the CVE-2025-24813 vulnerability.

Details

Affected Versions:

  • Apache Tomcat 11.0.0-M1 to 11.0.2
  • Apache Tomcat 10.1.0-M1 to 10.1.34
  • Apache Tomcat 9.0.0.M1 to 9.0.98

References

  • CVE-2025-24813 Advisory
  • Apache Announcement

Steps to Test the Vulnerability

  1. Run the following command to build and start the vulnerable Apache Tomcat container
root@kitploit:~
docker build -t v-tomcat .
docker run -d -p 1234:8080 --name tomcat-lab v-tomcat

If the ROOT folder is not created;
docker exec -it tomcat-lab mkdir -p /usr/local/tomcat/webapps/ROOT
  1. Upload a file with curl
root@kitploit:~
curl -X PUT -H "Content-Type: application/octet-stream" --data-binary "vuln3r4bl3" http://localhost:1234/vln
  1. Verify the upload: If the response contains "vuln3r4bl3", it indicates that the upload was successful.
root@kitploit:~
curl -X GET http://localhost:1234/vln

⚠️ Disclaimer

This lab is intended for educational and security research purposes only. Do not deploy this configuration on production systems.

Download Tool