
ApacheHunter rileva CVE-2024-22393 nei server Apache Answer. Simile a Wappalyzer ma basato su CLI. Esegue scansioni di header, contenuto delle pagine, meta tag e percorsi per identificare versioni di Apache e installazioni vulnerabili (≤1.2.1). Nessun file di output—solo risultati in tempo reale.
Sviluppato da Rownok Ahmed Khan
GitHub: https://github.com/Rk-000
ApacheHunter è un potente scanner progettato per rilevare server Apache, identificare versioni e verificare la presenza della vulnerabilità CVE-2024-22393 (Pixel Flood) nelle installazioni di Apache Answer.
# Clona il repository
git clone https://github.com/Rk-000/ApacheHunter.git
cd ApacheHunter
# Installa le dipendenze
pip install -r requirements.txt
# Rendi eseguibile lo script
chmod +x ApacheHunter.py
Scansione di Base
# Scansiona un singolo URL
python ApacheHunter.py -u example.com
# Scansiona più target da file
python ApacheHunter.py -f targets.txt
# Scansiona con output
python ApacheHunter.py -f targets.txt -o scan_results --format json
# Esegui scansione con ritardo (per accuratezza)
python ApacheHunter.py -f targets.txt --delay 2
# Oppure esegui veloce ma accurato
python ApacheHunter.py -f targets.txt --delay 1
Opzioni Avanzate
# Specifica il metodo di rilevamento
python ApacheHunter.py -u example.com --method headers
# Controlla la velocità di scansione
python ApacheHunter.py -f targets.txt --speed slow --delay 1
# Usa un proxy
python ApacheHunter.py -u example.com --proxy http://127.0.0.1:8080
# Scansione multi-thread
python ApacheHunter.py -f targets.txt --speed fast --threads 20
# User-Agent personalizzato
python ApacheHunter.py -u example.com --user-agent "Mozilla/5.0..."
Aiuto
python ApacheHunter.py -h
Output TXT
python ApacheHunter.py -f targets.txt -o results --format txt
Output JSON
python ApacheHunter.py -f targets.txt -o results --format json
Output CSV
python ApacheHunter.py -f targets.txt -o results --format csv