
ApacheHunter는 Apache Answer 서버에서 CVE-2024-22393을 탐지합니다. Wappalyzer와 유사하지만 CLI 기반입니다. 헤더, 페이지 콘텐츠, 메타 태그 및 경로를 스캔하여 Apache 버전과 취약한 설치(≤1.2.1)를 식별합니다. 출력 파일 없음—실시간 결과만 제공합니다.
Rownok Ahmed Khan 개발
GitHub: https://github.com/Rk-000
ApacheHunter는 Apache 서버를 탐지하고, 버전을 식별하며, Apache Answer 설치에서 CVE-2024-22393 (Pixel Flood 취약점)을 확인하도록 설계된 강력한 스캐너입니다.
# Clone the repository
git clone https://github.com/Rk-000/ApacheHunter.git
cd ApacheHunter
# Install dependencies
pip install -r requirements.txt
# Make the script executable
chmod +x ApacheHunter.py
기본 스캔
# Scan single URL
python ApacheHunter.py -u example.com
# Scan multiple targets from file
python ApacheHunter.py -f targets.txt
# Scan with output
python ApacheHunter.py -f targets.txt -o scan_results --format json
# Run scan with delay (for accuracy)
python ApacheHunter.py -f targets.txt --delay 2
# Or run fast but accurate
python ApacheHunter.py -f targets.txt --delay 1
고급 옵션
# Specify detection method
python ApacheHunter.py -u example.com --method headers
# Control scan speed
python ApacheHunter.py -f targets.txt --speed slow --delay 1
# Use proxy
python ApacheHunter.py -u example.com --proxy http://127.0.0.1:8080
# Multi-threaded scanning
python ApacheHunter.py -f targets.txt --speed fast --threads 20
# Custom User-Agent
python ApacheHunter.py -u example.com --user-agent "Mozilla/5.0..."
도움말
python ApacheHunter.py -h
TXT 출력
python ApacheHunter.py -f targets.txt -o results --format txt
JSON 출력
python ApacheHunter.py -f targets.txt -o results --format json
CSV 출력
python ApacheHunter.py -f targets.txt -o results --format csv