
CVE-2026-63030 & CVE-2026-60137 Wp2shell Poc
poc_wp_tot.py is a proof‑of‑concept (PoC) to exploit a time‑based blind SQL injection vulnerability on the WordPress REST API batch endpoint, and perform an escalation chain up to Remote Code Execution (RCE).
poc_wp_tot.pypython3 -m venv venv
source venv/bin/activate

The script provides three operating modes: probe (detection), extract (retrieve data), and rce (execute commands). Here are usage examples.
python3 poc_wp_tot.py https://target.example.com/
python3 poc_wp_tot.py -v https://target.example.com/ "SELECT user_login FROM wp_users LIMIT 1"
python3 poc_wp_tot.py https://target.example.com/ -c "id && uname -a"
-h, --help : Display help message-v, --verbose: Enable verbose output (debug)-c <COMMAND> : RCE mode — execute shell command on targetSLEEP() function to be executed on the target server as a boolean condition (time‑based blind SQLi).poc_wp_tot.py.calibrate(), get_scalar(), and exploit_rce() functions in the script.