一、运行环境:kali2020
二、参数介绍:
-h, --help 显示帮助
-o, --overflow [Term] Exploit标题被允许溢出其列
-u, --update 检查并安装任何exploitdb软件包更新(deb或git)
-x, --examine [EDB-ID] 使用$ PAGER检查(副本)Exp
--nmap [file.xml] 使用服务版本检查Nmap XML输出中的所有结果(例如:nmap -sV -oX file.xml)
例如--exclude=“term1 | term2 | term3”。
三、使用方法:
1、每次使用前最好都更新一下漏洞库
searchsploit -u
2、添加要查找的关键词,用空格隔开,相当于中间添加and
searchsploit afd windows local
3、 只匹配标题,不会对路径中的关键词进行匹配
searchsploit -t afd windows local
4、 删除不想要的结果
searchsploit -t afd windows local --exclude="(MS11-046)"
5、利用管道符删除不想要的结果
searchsploit -t afd windows local | grep -v '/dos/'
6、获取某漏洞的详细信息
searchsploit -p 18176
7、复制有用的漏洞到当前目录
searchsploit -m 18176