-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.py
51 lines (44 loc) · 1.39 KB
/
search.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python3
import shodan
class lookup:
def __init__(self, port='port:102 ', country=None, city=None, page=1):
if country == None:
country_str = ''
else:
country_str = ' country:' + country
if city == None:
city_str = ''
else:
city_str = ' city:' + city
self.str_search = port + country_str + city_str
self.search(page)
def search(self, page_s):
'''
Main search task
'''
SHODAN_API_KEY = 'YOUR API KEY HERE'
try:
api = shodan.Shodan(SHODAN_API_KEY)
except:
raise Exception("Search stopped, check API key and internet connection.")
results = api.search(self.str_search, page=page_s)
if results['total'] == 0:
raise Exception("No results found!")
out_results = []
for result in results['matches']:
ip = result['ip_str']
location = result['location']
data = result['data']
isp = result['isp']
plc = host(ip, location, data, isp)
out_results.append(plc)
self.results = out_results
class host:
'''
Class for each host in the search results
'''
def __init__(self, ip, location, data, isp):
self.ip = ip
self.location = location
self.data = data
self.isp = isp