查找美国安全局的网段:
shodan search --limit 10 --fields ip_str,port net:208.88.84.0/24
搜索一些组织的命令:
shodan search --limit 10 --fields ip_str,port org:nsa.gov
搜索一些使用了安全狗的网站:
shodan search --limit 10 --fields ip_str,port country:cn http.waf:safedog
检索html前端页面中带有关键字的ip地址和title类似:
shodan search --limit 10 --fields ip_str,port country:cn http.html:login
Mongodb未授权登录数据库:
shodan search --limit 10 --fields ip_str "Mongodb server information -authentication" port:27017
shodan search --limit 10 --fields ip_str "X-Jenkins" OR "Set-cookie:JESSIONID" http.title:"Dashboard"
使用逻辑词or扩大搜索范围,表示搜索结果的响应头包含X-Jenkins或者Set_cookie中=包含“JESSIONID”
http.title:"Dashboard":另一个搜索条件,表示HTTP响应的标题中包含“Dashboard“这个字符串
标签:10,search,--,ip,sec,limit,泷羽,shodan From: https://blog.csdn.net/weixin_43433141/article/details/143396422