shodan信息查询

虽然目前人们都认为谷歌是最强劲的搜索引擎,但Shodan才是互联网上最可怕的搜索引擎。
与谷歌不同的是,Shodan不是在网上搜索网址,而是直接进入互联网的背后通道。Shodan
可以说是一款“黑暗”谷歌,一刻不停的在寻找着所有和互联网关联的服务器、摄像头、打印头、路由器等等。

Shodan注册链接:https://account.shodan.io/register
1、Shodan搜索Webcam(在Explore搜索框中输入webcam进行搜索)
2、Shodan搜索指定端口(在Explore搜索框中输入port:xx进行搜索)。
3、Shodan搜索指定IP地址(通过关键字host指定具体IP地址。例如:
host:31.135.169.121 指定探测IP地址主机信息)。
4、Shodan搜索具体城市(city:hangzhou port:22)

KALI LINUX:
Shodan安装命令行:easy_install shodan
Shodan初始化命令行:shodan init 注册登录得到的key值
Shodan启动与查找具体服务数量(shodan count apache)
Shodan命令行搜索功能(shodan search microsoft iis 6.0)
shodan host ip地址(Shodan获取指定IP地址信息)
shodan info(查看自身账户的信息)
shodan myip(查询自身外部ip地址)
shodan honeyscore ip地址(检测是否有蜜罐保护)

Python-shodan初始化API Key
1、利用Python-shodan连接API Key:
ipython
import shodan
SHODAN_API_KEY = “key值”
api = shodan.Shodan(SHODAN_API_KEY)
2、利用shodan api查询信息。查看参数与返回结果https://developer.shodan.io/api
result = api.search(‘apache

猜你喜欢

转载自blog.csdn.net/weixin_41970600/article/details/104766664