
CVE-2019-9053.
Dies ist ein Python 3-Port des CVE-2019-9053 Exploits, der CMS Made Simple (CMSMS) Versionen vor 2.2.10 angreift. Die Sicherheitslücke ermöglicht SQL-Injection über die News-Modul-Schnittstelle.
Getestet auf der TryHackMe Simple CTF Challenge.

Der Exploit nutzt eine SQL-Injection-Sicherheitslücke im CMS Made Simple News-Modul aus. Er kann:
Laden Sie es herunter und führen Sie es schnell mit diesen Befehlen aus:
# Download the exploit
curl -O https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/exploit.py
# Download requirements
curl -O https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/requirements.txt
# Install requirements
pip install -r requirements.txt
# Make exploit executable
chmod +x exploit.py
# Run the exploit
./exploit.py -u http://target.com/cms
Alternative mit wget:
wget https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/exploit.py
wget https://raw.githubusercontent.com/del0x3/CVE-2019-9053-port-py3/main/requirements.txt
pip install -r requirements.txt
chmod +x exploit.py
./exploit.py -u http://target.com/cms
git clone https://github.com/del0x3/CVE-2019-9053-port-py3.git
cd CVE-2019-9053-port-py3
pip install -r requirements.txt
Grundlegende Verwendung:
python3 exploit.py -u http://target.com/cms
Mit Passwort-Cracking:
python3 exploit.py -u http://target.com/cms -c -w /path/to/wordlist.txt
-u, --url: Basis-Ziel-URL (erforderlich)-w, --wordlist: Pfad zur Wortliste für das Passwort-Cracking-c, --crack: Passwort-Cracking-Modus aktivierenDieses Tool dient ausschließlich zu Bildungs- und Sicherheitsforschungszwecken. Verwenden Sie es nicht gegen Systeme ohne ausdrückliche Erlaubnis.
MIT-Lizenz