Python中shodan模块是什么?

  • 更新时间:2021-07-12 08:30:11
  • 编辑:万小春
为找教程的网友们整理了相关的编程文章,网友沈和歌根据主题投稿了本篇教程内容,涉及到Python相关内容,已被491网友关注,下面的电子资料对本篇知识点有更加详尽的解释。

参考资料

正文内容

给学习python的读者整理一篇《Python中shodan模块是什么?》优秀文章,觉得应该跟大家分享,改了一下错误代码,为了大家阅读方便。

Python中shodan模块是什么? 

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

shodan模块安装:

pip install shodan

常用函数:

shodan.Shodan(key)
Shodan.ports()
Shodan.services()

实例应用:

import shodan   
try:
    results=api.search('apache')    
    print(results)
    print("Results found:%s"%results['total'])
    for result in results['matches']:
        print(result['ip_str'])

 上述为大家介绍的就是关于shodan模块最主要的用法,便于大家掌握了解,基本上都整理出来了,感兴趣的小伙伴可以多尝试了解下哦~

相关教程

用户留言