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-2022-46364-Poc — Python exploit for CVE-2022-46364 (Apache CXF SSRF via MTOM XOP:Include). Sends crafted SOAP requests to exfiltrate internal metadata, credentials, and microservice data from vulnerable endpoints. | Kitploit
Tools/GitHubGitHub/kasem545/cve-2022-46364-poc
ReconnaissanceVulnerability AnalysisExploitationInformation GatheringWeb SecurityPenetration Testing
GitHubkasem545/cve-2022-46364-poc

CVE-2022-46364-Poc

Python exploit for CVE-2022-46364 (Apache CXF SSRF via MTOM XOP:Include). Sends crafted SOAP requests to exfiltrate internal metadata, credentials, and microservice data from vulnerable endpoints.

View Repository
735 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-2022-46364 Exploit

Apache CXF SSRF via MTOM XOP:Include | CVSS 9.8 CRITICAL

Vulnerability

Apache CXF < 3.5.5 / < 3.4.10 allows Server-Side Request Forgery through unvalidated XOP:Include href attributes in MTOM-encoded SOAP requests.

Usage

root@kitploit:~
python3 exploit.py -t <TARGET_URL> -s <SSRF_URL> -d <DOMAIN>
  • -t, --target - Vulnerable CXF SOAP endpoint (required)
  • -s, --ssrf-url - Internal URL to exfiltrate (required)
  • -d, --domain - Target domain (default: localhost)
  • --plain-soap - Use plain SOAP instead of MTOM

Example

root@kitploit:~
# Read /etc/passwd
python3 exploit.py -t http://target.com:8080/employeeservice -s file:///etc/passwd -d target.com

Attack Flow

  1. Attacker sends SOAP request with XOP:Include element
  2. CXF server fetches internal URL without validation
  3. Response contains Base64-encoded exfiltrated data
  4. Exploit decodes and displays content

Impact

  • AWS/GCP/Azure metadata & IAM credentials
  • Internal admin panels and APIs
  • Database credentials from environment endpoints
  • Internal microservice data

References

  • CVE-2022-46364
  • CWE-918 (SSRF)
  • https://nvd.nist.gov/vuln/detail/CVE-2022-46364
  • https://github.com/advisories/GHSA-x3x3-qwjq-8gj4
Download Tool