1. 程式人生 > >python寫端口批量掃描器

python寫端口批量掃描器

imp oda pan except word 技術分享 bsp mat div

 用到shodan模塊

話不多說,馬上開始

pip3 install shodan

import shodan

SHODAN_API_KEY=" 你的shodankey"

api = shodan.Shodan(SHODAN_API_KEY)

try:

results=api.search("3389")

print (‘Results found: %s‘ % results[‘total‘]) for result in results[‘matches‘]: print (‘IP: %s‘ % result[‘ip_str‘]) print (result[‘data‘])
print (‘‘) except shodan.APIError as e: print (‘Error: %s‘ % e) 技術分享

python寫端口批量掃描器