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

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

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

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

工具目录

分类

查看所有分类
Loading categories
工具/GitHubGitHub/chvancooten/bugbountyscanner
侦察漏洞扫描器端口扫描信息收集Web安全渗透测试子域名枚举网络爬虫
GitHubchvancooten/bugbountyscanner

BugBountyScanner

一个用于漏洞赏金侦察的Bash脚本和Docker镜像。适用于无头使用。

查看仓库
9221269个月前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

BugBountyScanner

GitHub Workflow Status Docker Pulls Badge Docker Image Size Badge PRs Welcome

一个用于漏洞赏金侦察的Bash脚本和Docker镜像,适合无头运行。资源占用低,信息输出丰富。

觉得有用?BugBountyScanner帮你赚到了赏金?

Sponsor on GitHub

描述

⚠ 注意:强烈建议通过VPN运行脚本。

建议从服务器(VPS或家庭服务器)运行BugBountyScanner,而不是从你的终端。它被设计为资源占用低,适合对较大范围进行可能持续数天的扫描。脚本可独立运行。

你可以选择以Docker镜像方式运行,或在Debian/Ubuntu系统上直接运行(见下文)。只需启动脚本,然后就不用管了!运行脚本的时间从几分钟(对于非常小的范围,<10个子域名)到几天(对于非常大的范围,>20000个子域名)不等。有一个“快速模式”标志,可以跳过一些耗时的任务,如漏洞识别、端口扫描和Web端点爬取。

安装

Docker

Docker Hub链接:https://hub.docker.com/r/chvancooten/bugbountyscanner。每当BugBountyScanner有更新且所有测试通过时,CI/CD会将镜像推送到`:latest`标签。

你可以按如下方式从Docker Hub拉取并运行Docker镜像。

root@kitploit:~
docker pull chvancooten/bugbountyscanner
docker run -v $(pwd):/root/bugbounty -it chvancooten/bugbountyscanner /bin/bash

也可以使用Docker-Compose。

root@kitploit:~
version: "3"
services:
  bugbountybox:
    container_name: BugBountyBox
    stdin_open: true
    tty: true
    image: chvancooten/bugbountyscanner:latest
    environment:
    - telegram_api_key=X
    - telegram_chat_id=X
    volumes:
      - ${USERDIR}/docker/bugbountybox:/root/bugbounty
    # VPN recommended :)
    network_mode: service:your_vpn_container
    depends_on:
      - your_vpn_container

或者,你也可以从源码构建镜像。

root@kitploit:~
git clone https://github.com/chvancooten/BugBountyScanner.git
cd BugBountyScanner
docker build .

手动安装

如果你更倾向于手动运行脚本,也可以。

ℹ 注意:该脚本基于 Ubuntu 20.04 构建并测试。在其他发行版上效果可能有所差异,但应该能在大多数基于 Debian 的系统(如 Kali Linux)上运行。

root@kitploit:~
git clone https://github.com/chvancooten/BugBountyScanner.git
cd BugBountyScanner
cp .env.example .env # 根据实际情况编辑
chmod +x BugBountyScanner.sh setup.sh
./setup.sh -t /custom/tools/dir # 安装会自动触发,但也可以手动运行
./BugBountyScanner.sh --help
./BugBountyScanner.sh -d target1.com -d target2.net -t /custom/tools/dir --quick

用法

使用 --help 或 -h 查看简短的帮助菜单。

root@kitploit:~
root@dockerhost:~# ./BugBountyScanner.sh -h
BugBountyHunter - Automated Bug Bounty reconnaissance script
 
./BugBountyScanner.sh [options]
 
options:
-h, --help                show brief help
-t, --toolsdir            tools directory (no trailing /), defaults to '/opt'
-q, --quick               perform quick recon only (default: false)
-d, --domain <domain>     top domain to scan, can take multiple
-o, --outputdirectory     parent output directory, defaults to current directory (subfolders will be created per domain)
-w, --overwrite           overwrite existing files. Skip steps with existing files if not provided (default: false)
 
Note: 'ToolsDir', 'telegram_api_key' and 'telegram_chat_id' can be defined in .env or through Docker environment variables.
 
example:
./BugBountyScanner.sh --quick -d google.com -d uber.com -t /opt

功能特性

  • 资源高效,适合在低配 VPS、家庭服务器或树莓派上长时间后台运行
  • Telegram 状态通知,附带每条命令的结果
  • 使用 Nuclei 进行广泛的 CVE 和配置错误检测(无侵入性或信息性检查)
  • 子域名枚举和活跃 Web 服务器检测
  • Web 截图和爬取,生成 HTML 截图报告
  • 从 Wayback Machine 获取(希望是敏感的)端点
  • 使用 Gf 识别有趣的参数化 URL
  • 使用 Ffuf 枚举常见的“临时”和遗漏文件
  • 自动检测 URL 参数中的 LFI、SSTI 和开放重定向
  • 子域名接管检测
  • 端口扫描(TCP 前 1000 端口 + SNMP)
  • “快速模式”,用于(相对)操作安全的 infrastructure 侦察

使用工具

  • amass
  • aquatone
  • dnsutils
  • ffuf
  • gau
  • Gf(搭配 Gf-Patterns)
  • Go
  • gospider
  • httpx
  • nmap
  • Nuclei(搭配 Nuclei-Templates)
  • qsreplace
  • subjack

贡献者

衷心感谢所有帮助改进的贡献者。各位的贡献深受感激。

下载工具