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

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

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

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

工具目录

分类

查看所有分类
Loading categories
bothan — 这个 IP 是 C2 服务器吗? | Kitploit
工具/GitHubGitHub/audibleblink/bothan
防御工具侦察信息收集网络安全命令与控制威胁情报
GitHubaudibleblink/bothan

bothan

这个 IP 是 C2 服务器吗?

查看仓库
2736年前Kitploit 审核通过

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

bothan

确认某个 ip:port 是否托管了 Empire。未来将支持其他 C2。

用法

root@kitploit:~
# Direct single query
❯❯ bothan -v localhost:8080
DEBU[2020-01-19T20:25:02-05:00] Requesting...                                 host="localhost:8080"
INFO[2020-01-19T20:25:02-05:00] SUCCESS                                       host="http://localhost:8080" tool=empire

# Take a pre-existing list of host:port lines
❯❯ bothan -v -f hostslist.txt
DEBU[2020-01-19T20:25:10-05:00] Requesting...                                 host="localhost:8080"
INFO[2020-01-19T20:25:10-05:00] SUCCESS                                       host="http://localhost:8080" tool=empire

# Take Stdin
❯❯ cat masscan.oD.txt | jq -r '. | "\(.ip):\(.port)"' | bothan -f -
ERRO[2020-01-19T20:25:25-05:00] Get https://1.1.1.1:53: EOF                   host="1.1.1.1:53"
INFO[2020-01-19T20:25:25-05:00] SUCCESS                                       host="http://192.168.1.199:8080" tool=empire

# For masscan specifically, there's an option to parse its -oD json output format
❯❯ masscan 192.168.1.0/24 -p 8080 -oD - | bothan --masscan -f -
INFO[2020-01-19T20:25:31-05:00] SUCCESS                                       host="http://192.168.1.199:8080" tool=empire

成功的结果写入 Stdout,所有其他日志写入 Stderr。

安装

root@kitploit:~
go get github.com/audibleblink/bothan

构建

  1. 安装 go
  2. 安装 make
  3. 输入 make
root@kitploit:~
bin
├── 386
│   ├── bothan.darwin
│   ├── bothan.linux
│   └── bothan.windows.exe
├── amd64
│   ├── bothan.darwin
│   ├── bothan.linux
│   └── bothan.windows.exe
├── arm
│   └── bothan.linux
└── arm64
    └── bothan.linux

4 directories, 8 files

误报

在开发此工具进行测试时,我最初以默认状态运行 Empire,然后进行自定义。之后,我依赖公开威胁情报源列出的服务器进行测试;大约 100 台。

其中 98 台被识别为 Empire。一台只是超时,另一台看起来经过大量修改。

也就是说,我并没有一个我认为具有统计意义的样本集来进行测试,所以如果你遇到任何误报/漏报,请报告。

下载工具