
ApacheHunter detecta CVE-2024-22393 en servidores Apache Answer. Como Wappalyzer pero basado en CLI. Escanea encabezados, contenido de página, metaetiquetas y rutas para identificar versiones de Apache e instalaciones vulnerables (≤1.2.1). Sin archivos de salida, solo resultados en tiempo real.
Desarrollado por Rownok Ahmed Khan
GitHub: https://github.com/Rk-000
ApacheHunter es un potente escáner diseñado para detectar servidores Apache, identificar versiones y comprobar la vulnerabilidad CVE-2024-22393 (Pixel Flood) en instalaciones de Apache Answer.
# Clonar el repositorio
git clone https://github.com/Rk-000/ApacheHunter.git
cd ApacheHunter
# Instalar dependencias
pip install -r requirements.txt
# Hacer ejecutable el script
chmod +x ApacheHunter.py
Escaneo Básico
# Escanear una sola URL
python ApacheHunter.py -u example.com
# Escanear múltiples objetivos desde un archivo
python ApacheHunter.py -f targets.txt
# Escanear con salida
python ApacheHunter.py -f targets.txt -o scan_results --format json
# Ejecutar escaneo con retardo (para precisión)
python ApacheHunter.py -f targets.txt --delay 2
# O ejecutar rápido pero preciso
python ApacheHunter.py -f targets.txt --delay 1
Opciones Avanzadas
# Especificar método de detección
python ApacheHunter.py -u example.com --method headers
# Controlar la velocidad de escaneo
python ApacheHunter.py -f targets.txt --speed slow --delay 1
# Usar proxy
python ApacheHunter.py -u example.com --proxy http://127.0.0.1:8080
# Escaneo con múltiples hilos
python ApacheHunter.py -f targets.txt --speed fast --threads 20
# User-Agent personalizado
python ApacheHunter.py -u example.com --user-agent "Mozilla/5.0..."
Ayuda
python ApacheHunter.py -h
Salida TXT
python ApacheHunter.py -f targets.txt -o results --format txt
Salida JSON
python ApacheHunter.py -f targets.txt -o results --format json
Salida CSV
python ApacheHunter.py -f targets.txt -o results --format csv