2018-11-21 01:04:57 +08:00
|
|
|
from discovery.shodan import Shodan
|
|
|
|
import sys
|
|
|
|
|
|
|
|
class search_shodan():
|
|
|
|
|
|
|
|
def __init__(self, host):
|
|
|
|
self.host = host
|
|
|
|
self.key = "oCiMsgM6rQWqiTvPxFHYcExlZgg7wvTt"
|
|
|
|
if self.key == "":
|
|
|
|
print("You need an API key in order to use SHODAN database. You can get one here: http://www.shodanhq.com/")
|
|
|
|
sys.exit()
|
|
|
|
self.api = Shodan(self.key)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
try:
|
2018-11-23 07:31:21 +08:00
|
|
|
result = self.api.host(self.host)
|
|
|
|
#for service in result['data']:
|
|
|
|
# print ("%s:%s" % (service['ip_str'], service['port']))
|
|
|
|
# print ("%s" % (service['product']))
|
|
|
|
# print ("%s" % (service['hostnames']))
|
|
|
|
return result
|
2018-11-21 01:04:57 +08:00
|
|
|
except Exception as e:
|
|
|
|
print("SHODAN empty reply or error in the call")
|
|
|
|
return "error"
|