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

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

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

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

工具目录

分类

查看所有分类
Loading categories
SMBGhost_Scanner — Advanced scanner for CVE-2020-0796 - SMBv3 RCE | Kitploit
工具/GitHubGitHub/w1ld3r/smbghost_scanner
OSINT (Open Source Intelligence)ReconnaissanceVulnerability ScannersExploitationInformation GatheringNetwork Security
GitHubw1ld3r/smbghost_scanner

SMBGhost_Scanner

Advanced scanner for CVE-2020-0796 - SMBv3 RCE

查看仓库
1413年前尚未审核

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

SMBGhost

针对 CVE-2020-0796 - SMBv3 RCE 的高级扫描器,使用 ollypwn 的检测技术(SMBGhost)。

它可以使用 masscan 扫描整个互联网,也可以扫描单个 IP。

它可以利用 Shodan(需要 API 密钥)获取更多目标信息,并将结果写入 JSON 文件。

否则,它会在控制台输出存在漏洞的 IP。

开始使用

先决条件

安装 python3 和 pip:

root@kitploit:~
sudo apt install python3 python3-pip

安装 masscan:

root@kitploit:~
sudo apt-get install git gcc make libpcap-dev
git clone https://github.com/robertdavidgraham/masscan
cd masscan
make
cp bin/masscan /usr/bin/.

安装

安装过程已在 Debian bullseye/sid x86_64(2020 年 3 月)上测试通过。

克隆项目

root@kitploit:~
git clone https://github.com/x1n5h3n/SMBGhost.git

进入项目文件夹

root@kitploit:~
cd SMBGhost

安装必要的 Python 包:

root@kitploit:~
pip3 install -r requirements.txt

将你的 Shodan API 密钥设置到变量 SHODAN_API_KEY 中。

用法

显示帮助:

root@kitploit:~
python3 scanner.py -h

使用 Shodan API 密钥

扫描整个互联网并将结果写入 JSON 文件(通过查询 Shodan 获取更多信息):

root@kitploit:~
python3 scanner.py -t 0.0.0.0/0 -o results.json

扫描单个 IP,不指定结果文件名(默认为 smbghost.json):

root@kitploit:~
python3 scanner.py -t 8.8.8.8

使用文件作为输入:

root@kitploit:~
python3 scanner.py -f targets.txt

不使用 Shodan API 密钥

扫描整个互联网:

root@kitploit:~
python3 scanner.py -t 0.0.0.0/0

扫描单个 IP:

root@kitploit:~
python3 scanner.py -t 8.8.8.8

使用文件作为输入:

root@kitploit:~
python3 scanner.py -f targets.txt

许可证

本项目采用 GPLv3 许可证 - 详见 LICENSE 文件。

下载工具