Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
Apache-Hunter — ApacheHunter 检测 Apache Answer 服务器中的 CVE-2024-22393。类似于 Wappalyzer 但基于 CLI。扫描头部、页面内容、元标签和路径,以识别 Apache 版本及易受攻击的安装(≤1.2.1)。无输出文件——仅实时结果。 | Kitploit
工具/GitHubGitHub/rk-000/apache-hunter
侦察漏洞扫描器漏洞利用信息收集Web安全渗透测试
GitHubrk-000/apache-hunter

Apache-Hunter

ApacheHunter 检测 Apache Answer 服务器中的 CVE-2024-22393。类似于 Wappalyzer 但基于 CLI。扫描头部、页面内容、元标签和路径,以识别 Apache 版本及易受攻击的安装(≤1.2.1)。无输出文件——仅实时结果。

查看仓库
15个月前尚未审核

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

ApacheHunter - 高级 Apache 服务器扫描器

由 Rownok Ahmed Khan 开发
GitHub: https://github.com/Rk-000

ApacheHunter 是一款功能强大的扫描器,用于检测 Apache 服务器、识别版本并检查 Apache Answer 安装中的 CVE-2024-22393(像素洪水漏洞)。

功能特点

  • ✅ 检测 Apache 服务器并提取版本
  • ✅ 检查 CVE-2024-22393 漏洞
  • ✅ 多种检测方法(头部信息、页面分析、路径探测)
  • ✅ 三种扫描速度(慢速、普通、快速)
  • ✅ 代理支持
  • ✅ 多种输出格式(TXT、JSON、CSV)
  • ✅ 多线程支持
  • ✅ 彩色终端输出
  • ✅ 置信度评分

安装

root@kitploit:~
# 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

使用方法

基本扫描

root@kitploit:~
# 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

高级选项

root@kitploit:~
# 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..."

帮助

root@kitploit:~
python ApacheHunter.py -h

输出格式

TXT 输出

root@kitploit:~
python ApacheHunter.py -f targets.txt -o results --format txt

JSON 输出

root@kitploit:~
python ApacheHunter.py -f targets.txt -o results --format json

CSV 输出

root@kitploit:~
python ApacheHunter.py -f targets.txt -o results --format csv
下载工具