python中shodan模塊是什么?
本文教程操作環(huán)境:windows7系統(tǒng)、Python3.9.1,DELLG3電腦。
shodan模塊安裝:
pipinstallshodan
常用函數(shù):
shodan.Shodan(key)
Shodan.ports()
Shodan.services()
實例應(yīng)用:
importshodan
try:
results=api.search('apache')
print(results)
print("Resultsfound:%s"%results['total'])
forresultinresults['matches']:
print(result['ip_str'])
上述為大家介紹的就是關(guān)于shodan模塊最主要的用法,便于大家掌握了解,基本上都整理出來了,感興趣的小伙伴可以多嘗試了解下哦~更多Python學(xué)習(xí)教程請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。