
ApacheHunter détecte CVE-2024-22393 sur les serveurs Apache Answer. Comme Wappalyzer mais en ligne de commande. Analyse les en-têtes, le contenu des pages, les balises meta et les chemins pour identifier les versions d'Apache et les installations vulnérables (≤1.2.1). Pas de fichiers de sortie—seulement des résultats en temps réel.
Développé par Rownok Ahmed Khan
GitHub: https://github.com/Rk-000
ApacheHunter est un scanner puissant conçu pour détecter les serveurs Apache, identifier leurs versions et vérifier la présence de la vulnérabilité CVE-2024-22393 (Pixel Flood) dans les installations Apache Answer.
# 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
Balayage de base
# 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
Options avancées
# 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..."
Aide
python ApacheHunter.py -h
Sortie TXT
python ApacheHunter.py -f targets.txt -o results --format txt
Sortie JSON
python ApacheHunter.py -f targets.txt -o results --format json
Sortie CSV
python ApacheHunter.py -f targets.txt -o results --format csv