
يكتشف ApacheHunter الثغرة CVE-2024-22393 في خوادم Apache Answer. مثل Wappalyzer لكن قائم على CLI. يفحص الرؤوس ومحتوى الصفحة والعلامات الوصفية والمسارات لتحديد إصدارات Apache والمنشآت الضعيفة (≤1.2.1). لا توجد ملفات إخراج—فقط نتائج فورية.
تم التطوير بواسطة Rownok Ahmed Khan
GitHub: https://github.com/Rk-000
ApacheHunter هو ماسح قوي مصمم لاكتشاف خوادم Apache، وتحديد الإصدارات، والتحقق من وجود ثغرة CVE-2024-22393 (ثغرة فيضان البكسل) في تثبيتات 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
المسح الأساسي
# 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