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

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

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

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

工具目录

分类

查看所有分类
Loading categories
CVE-2024-9166 — A vulnerability scanner that searches for the CVE-2024-9166 vulnerability on websites, more info about this vulnerability here: https://www.tenable.com/cve/CVE-2024-9166 | Kitploit
工具/GitHubGitHub/andrysqui/cve-2024-9166
Vulnerability ScannersExploitationWeb Application ExploitationInformation GatheringWeb SecurityPenetration Testing
GitHubandrysqui/cve-2024-9166

CVE-2024-9166

A vulnerability scanner that searches for the CVE-2024-9166 vulnerability on websites, more info about this vulnerability here: https://www.tenable.com/cve/CVE-2024-9166

查看仓库
41年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CVE-2024-9166 漏洞扫描器

一个基于Python的工具,用于扫描网站是否存在CVE-2024-9166漏洞,这是最新的漏洞之一(在发布此仓库时)。它检查漏洞模式,测试漏洞以确认,并将结果记录到文件中。

我对此工具的任何滥用行为概不负责。本工具旨在用于道德黑客行为,进行渗透测试(以及任何类型的黑客攻击)未经同意是非法的,并可能带来严重后果!

安装

要安装该工具,只需使用以下单一命令复制此Github仓库:

root@kitploit:~
git clone https://github.com/Andrysqui/CVE-2024-9166

要求

  • Python 3.7+
  • 通过 pip 安装 Python 依赖:
root@kitploit:~
pip install requests beautifulsoup4 argparse

用法

基本用法:

  1. 扫描单个URL:
root@kitploit:~
  python3 CVE-2024-9166.py --url https://example.com
  1. 从文件扫描多个URL并记录结果:
root@kitploit:~
  python3 CVE-2024-9166.py --file urls.txt --logfile output.log
  1. 自定义请求头
root@kitploit:~
  python3 CVE-2024-9166.py --url https://example.com --headers '{"User-Agent": "Custom-Agent", "Bug-Bounty: True", "Pen-Testing: True"}'

命令行参数:

  • -h 或 --help:显示帮助信息,解释下面的每个参数。
  • --url 或 -u:指定要扫描的单个URL(与 -f 或 --file 互斥)。
  • --file 或 -f:包含待扫描URL的文件路径(每行一个,与 -u 或 --url 互斥)。
  • --logfile 或 -l:记录结果的路径(默认:scan_log.txt)。
  • --headers:JSON 格式的自定义请求头(例如 '{"User-Agent": "Custom-Agent"}')。
下载工具
  • --threads:扫描多个URL时的线程数(默认:5)。
  • --exploit-command:用于测试漏洞的命令(默认:id)。
  • --vulnerable-content:使用自定义命令时,在响应中搜索以确认漏洞的模式(默认:uid=)。