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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2025-6543_CitrixNetScaler_PoC — 다중 호스트, 다중 포트 스캐너 및 감사 도구로, CVE-2025-6543에 영향을 받는 NetScaler 장치용입니다. SNMP 및 SSH 열거를 지원하며, 선택적으로 CSV 보고 및 익스플로잇 스텁을 제공합니다. | Kitploit
도구/GitHubGitHub/abrewer251/cve-2025-6543_citrixnetscaler_poc
ReconnaissanceVulnerability ScannersExploitationInformation GatheringNetwork SecurityPenetration Testing
GitHubabrewer251/cve-2025-6543_citrixnetscaler_poc

CVE-2025-6543_CitrixNetScaler_PoC

다중 호스트, 다중 포트 스캐너 및 감사 도구로, CVE-2025-6543에 영향을 받는 NetScaler 장치용입니다. SNMP 및 SSH 열거를 지원하며, 선택적으로 CSV 보고 및 익스플로잇 스텁을 제공합니다.

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
저장소 보기
611년 전아직 검토되지 않음

CVE-2025-6543_CitrixNetScaler_PoC

CVE-2025-6543에 영향을 받는 NetScaler 장치를 위한 다중 호스트, 다중 포트 스캐너 및 감사 도구입니다. SNMP 및 SSH 열거를 지원하며, 선택적 CSV 보고 및 익스플로잇 스텁을 제공합니다.

🔐 GitHub 저장소 설명

CVE-2025-6543 Enhanced Checker CVE-2025-6543에 영향을 받는 NetScaler 장치를 위한 다중 호스트, 다중 포트 스캐너 및 감사 도구입니다. SNMP 및 SSH 열거를 지원하며, 선택적 CSV 보고 및 익스플로잇 스텁을 제공합니다.


📄 README.md

root@kitploit:~
# CVE-2025-6543 Enhanced Checker

A robust multi-host, multi-port vulnerability scanner for **CVE-2025-6543**, targeting Citrix NetScaler appliances. This tool supports both SNMP and SSH banner grabbing to determine build versions and patch status. Includes optional CSV output and a stub for future exploit integration.

## ⚙️ Features

- ✅ Multi-host and multi-port scanning
- ✅ SNMP and SSH version enumeration
- ✅ Build/version parsing logic with patch baseline comparison
- ✅ Progress bar support via `tqdm`
- ✅ Export results to CSV
- ⚠️ Stub for exploit probe

---

## 📦 Requirements

- Python 3.6+
- `tqdm` (optional, for progress bar)
- `snmpget` from `net-snmp-utils`
- `sshpass` for password-based SSH access

### Install dependencies on Debian/Ubuntu:

```bash
sudo apt update
sudo apt install -y net-snmp sshpass python3-pip
pip3 install tqdm

🚀 Usage

root@kitploit:~
python3 cve_2025_6543_checker.py [OPTIONS]

🔹 Input Options

Required: either provide a host list or a file:

  • -H HOST [HOST ...] – Space-separated list of IPs/FQDNs
  • -f FILE – File with one host per line

Required: either provide a port or a file:

  • -p PORT – Single TCP port
  • -P FILE – File with one port per line

🔹 Connection Options

  • --no-snmp – Disable SNMP scanning
  • -c STRING – SNMP community string (default: public)
  • --ssh-user USER – SSH username
  • --ssh-pass PASS – SSH password

🔹 Output & Exploitation

  • -o FILE – Save results to CSV
  • -x – Run exploit probe (currently stubbed)

🔹 Debugging

  • -v – Verbose output for debugging and banner grabs

📘 Example Usages

Scan multiple hosts on one port:

root@kitploit:~
python3 cve_2025_6543_checker.py -H 192.168.1.10 192.168.1.11 -p 161

Scan from host and port files with SSH fallback:

root@kitploit:~
python3 cve_2025_6543_checker.py -f hosts.txt -P ports.txt \
    --ssh-user admin --ssh-pass password123 -o results.csv

Disable SNMP and force SSH-only scanning:

root@kitploit:~
python3 cve_2025_6543_checker.py -H 10.10.10.1 -p 22 \
    --no-snmp --ssh-user root --ssh-pass changeme

📝 Output Format (CSV)

If -o is used, the output file will include:

root@kitploit:~
host,port,branch,build,state
192.168.1.10,22,13.1,57.16,VULNERABLE ⚠️

🔒 About CVE-2025-6543

This vulnerability affects certain builds of Citrix NetScaler ADC/VPX appliances. The tool checks for known patched versions and flags devices that are potentially vulnerable based on build signatures. The included banner parsing logic supports various formats and tags (e.g., FIPS, NDCPP).


⚠️ Disclaimer

This tool is for educational and authorized security testing only. Unauthorized use against systems you do not own or have explicit permission to test is illegal and unethical.


📌 TODO

  • Implement real exploit logic in exploit_probe()
  • Add TLS/HTTPS banner scraping fallback
  • Implement JSON and XML output options
도구 다운로드