
開発者: Rownok Ahmed Khan
GitHub: https://github.com/Rk-000
ApacheHunterは、Apacheサーバーを検出し、バージョンを特定し、Apache AnswerインストールにおけるCVE-2024-22393(Pixel Flood脆弱性)を確認するために設計された強力なスキャナーです。
# リポジトリのクローン
git clone https://github.com/Rk-000/ApacheHunter.git
cd ApacheHunter
# 依存関係のインストール
pip install -r requirements.txt
# スクリプトを実行可能に
chmod +x ApacheHunter.py
# 基本的なスキャン
# 単一URLのスキャン
python ApacheHunter.py -u example.com
# ファイルからの複数ターゲットスキャン
python ApacheHunter.py -f targets.txt
# 出力付きスキャン
python ApacheHunter.py -f targets.txt -o scan_results --format json
# 遅延付きスキャン(精度向上のため)
python ApacheHunter.py -f targets.txt --delay 2
# または高速だが正確なスキャン
python ApacheHunter.py -f targets.txt --delay 1
# 高度なオプション
# 検出方法の指定
python ApacheHunter.py -u example.com --method headers
# スキャン速度の制御
python ApacheHunter.py -f targets.txt --speed slow --delay 1
# プロキシの使用
python ApacheHunter.py -u example.com --proxy http://127.0.0.1:8080
# マルチスレッドスキャン
python ApacheHunter.py -f targets.txt --speed fast --threads 20
# カスタム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