-
Notifications
You must be signed in to change notification settings - Fork 182
/
hosthunter.py
executable file
·513 lines (452 loc) · 16.5 KB
/
hosthunter.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
#!/usr/bin/python3
#
# | $$ | $$ | $$ | $$
# | $$ | $$ | $$ | $$ | $$ | $$
# | $$ | $$ /$$$$$$ /$$$$$$$ /$$$$$$ | $$ | $$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$
# | $$$$$$$$ /$$__ $$ /$$_____/|_ $$_/ | $$$$$$$$| $$ | $$| $$__ $$|_ $$_/ /$$__ $$ /$$__ $$
# | $$__ $$| $$ \ $$| $$$$$$ | $$ | $$__ $$| $$ | $$| $$ \ $$ | $$ | $$$$$$$$| $$ \__/
# | $$ | $$| $$__| $$ \____ $$ | $$ /$$| $$ | $$| $$__| $$| $$ | $$ | $$ /$$| $$_____/| $$
# | $$ | $$| $$$$$$/ /$$$$$$$/ | $$$$/| $$ | $$| $$$$$$/| $$ | $$ | $$$$/| $$$$$$$| $$
# |__/ |__/ \______/ |_______/ \___/ |__/ |__/ \______/ |__/ |__/ \___/ \_______/|__/ v1.5
#
# Author : Andreas Georgiou (@superhedgy)
# Email : [email protected]
# Twitter : @superhedgy
# Version: v2.0
#
# [+] Simple Usage Example:
#
# $ python3.10 hosthunter.py <target_ips.txt>
#
# $ cat vhosts.csv
# Standard Python Libraries
import argparse
import sys
import os
import ssl
import socket
import signal
import platform
import ipaddress
import re
from datetime import datetime
from time import time, sleep
# External Python Libraries
from validator_collection import checkers
import OpenSSL
import urllib3
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
# Constants
__version__ = "v2.0"
__author__ = "Andreas Georgiou (@superhedgy)"
# Hack to make things faster
socket.setdefaulttimeout(3)
global appsf
global vhostsf
global ipv6_enabled
ipv6_enabled=False
regx = "<li class=\"b_algo\"(.+?)</li>"
pattern_url = re.compile(r"https?://(www\.)?|(/.*)?")
pattern = re.compile(regx)
custom_headers = {
"Accept": "*/*",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "en-GB,en-US;q=0.9,en;q=0.8",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36",
}
def initialise():
global args
# Argument Parser
parser = argparse.ArgumentParser(
description='[?] HostHunter ' + __version__ + ' - Help Page',
epilog="Author: " + __author__)
parser.add_argument(
"-f",
"--format",
type=str,
help="Choose between .CSV, .TXT, Nessus output file formats.",
default="txt")
parser.add_argument(
"-o",
"--output",
help="Sets the path of the output file.",
type=str,
default="")
parser.add_argument("-t", "--target", help="Hunt a Single IP.")
parser.add_argument(
"targets",
nargs='?',
help="Sets the path of the target IPs file.",
type=str,
default="")
parser.add_argument(
"-g",
"--grab",
help="Choose which SSL ports to actively scan. Default ports: 21/tcp, 25/tcp, 443/tcp, 993/tcp, 8443/tcp",
type=str,
default="21,25,443,993,8443")
parser.add_argument(
"-v",
"--verify",
help="Attempts to resolve IP Address",
action="store_true",
default=False)
parser.add_argument(
"-V",
"--version",
help="Displays the current version.",
action="store_true",
default=False)
parser.add_argument(
"-d",
"--debug",
help="Displays additional output and debugging information.",
action="store_true",
default=False)
args = parser.parse_args()
if len(sys.argv) < 2:
print("\n[*] Error: No Arguments provided. ")
print("Example Usage: python3.10 hosthunter.py -t 8.8.8.8 -o vhosts.csv \n")
exit()
list_format=args.format.split(',')
for type in list_format:
if type.lower() != "txt" and type.lower() != "csv" and type.lower()!= "nessus" and type.lower()!= "all":
print("\n[*] Error: Output File Format is not supported. Choose between 'txt' or 'csv' or 'Nessus' or all .\n")
print("Example Usage: python3 hosthunter.py targets.txt -f \"txt,csv,Nessus\" \n")
exit()
if args.version:
print("HostHunter version", __version__)
print("Author:", __author__)
exit()
if args.target and args.targets:
print(
"\n[*] Error: Too many arguments! Either select single target or specify a list of targets.")
print("Example Usage: python3.10 hosthunter.py -t 8.8.8.8 -o vhosts.csv\n")
exit()
# Targets Input File
if args.targets and not os.path.exists(args.targets):
print("\n[*] Error: targets file", args.targets, "does not exist.\n")
exit()
if os.path.exists(args.output):
print(
"\n[?] {} file already exists, would you like to overwrite it?".format(
args.output))
answer = input("Answer with [Y]es or [N]o : ").lower()
if (answer == 'yes' or answer == 'y'):
pass
else:
exit()
if ipv6_on():
global ipv6_enabled
ipv6_enabled=True
else:
ipv6_enabled=False
def read_targets():
targets = []
if args.target:
targets.append(args.target)
else:
targets_fp = open(args.targets, "rt") # Read File
for target in targets_fp:
targets.append(target)
targets_fp.close()
return targets
# Prints HostHunter Banner
def display_banner():
banner = (
"\n | $$ | $$ | $$ | $$ \n"
" | $$ | $$ | $$ | $$ | $$ | $$\n"
" | $$ | $$ /$$$$$$ /$$$$$$$ /$$$$$$ | $$ | $$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$\n"
" | $$$$$$$$ /$$__ $$ /$$_____/|_ $$_/ | $$$$$$$$| $$ | $$| $$__ $$|_ $$_/ /$$__ $$ /$$__ $$\n"
" | $$__ $$| $$ \\ $$| $$$$$$ | $$ | $$__ $$| $$ | $$| $$ \\ $$ | $$ | $$$$$$$$| $$ \\__/\n"
" | $$ | $$| $$__| $$ \\____ $$ | $$ /$$| $$ | $$| $$__| $$| $$ | $$ | $$ /$$| $$_____/| $$\n"
" | $$ | $$| $$$$$$/ /$$$$$$$/ | $$$$/| $$ | $$| $$$$$$/| $$ | $$ | $$$$/| $$$$$$$| $$\n"
" |__/ |__/ \\______/ |_______/ \\___/ |__/ |__/ \\______/ |__/ |__/ \\___/ \\_______/|__/ " +
__version__ +
"\n")
print("%s" % banner)
print("\n", "HostHunter: ", __version__)
print(" Author : ", __author__)
print("\n" + "|" + "-" * 100 + "|", end="\n\n")
if ipv6_enabled:
print("[+] IPv6 Hunting is Enabled")
else:
print("[!] IPv6 Hunting is Disabled")
class target:
def __init__(self, address):
self.address = address
self.hname = []
self.apps = []
self.ipv6 = False
data_dict = {}
# Validate Input Targets - Needs to be Replaced
def validate(hostx):
if not checkers.is_ipv4(hostx.address):
if checkers.is_ipv6(hostx.address):
hostx.ipv6 = True
return True
else:
print(
"\n[*] \"",
hostx.address,
"\" is not a valid IPv4/IPv6 address and will be ignored.")
return False
else:
return True
## sslGrabber - IPv6
def sslGrabber6(hostx,port):
context = ssl.create_default_context()
context.check_hostname = False
context.verify_mode = ssl.CERT_OPTIONAL
context.load_default_certs()
conn = context.wrap_socket(socket.socket(socket.AF_INET6), server_hostname=hostx.address)
conn.connect((hostx.address, port))
cert = conn.getpeercert()
return cert['subjectAltName'][0][1]
# sslGrabber Function
def sslGrabber(hostx, port):
try:
cert = ssl.get_server_certificate((hostx.address, port))
x509 = OpenSSL.crypto.load_certificate(
OpenSSL.crypto.FILETYPE_PEM, cert)
cert_hostname = x509.get_subject().CN
# Get SAN
alt_names = []
for i in range(0, x509.get_extension_count()):
ext = x509.get_extension(i)
if "subjectAltName" in str(ext.get_short_name()):
content = ext.__str__()
for alt_name in content.split(","):
alt_names.append(alt_name.strip()[4:])
# Add New HostNames to List
if cert_hostname:
for host in cert_hostname.split('\n'):
if (host == "") or (host in hostx.hname):
pass
else:
if args.debug == True:
print(host)
try:
host = host.replace('*.', '')
finally:
hostx.hname.append(host)
for alt_name in alt_names:
if (alt_name not in hostx.hname):
hostx.hname.append(alt_name)
except (urllib3.exceptions.ReadTimeoutError,
requests.ConnectionError,
urllib3.connection.ConnectionError,
urllib3.exceptions.MaxRetryError,
urllib3.exceptions.ConnectTimeoutError,
urllib3.exceptions.TimeoutError,
socket.error, socket.timeout):
pass
# analyze_header Function
def analyze_header(header, hostx):
try:
r2 = requests.get("http://" + hostx.address,
allow_redirects=False,
headers=custom_headers, timeout=5).text
r2.close()
if (r2.status_code in range(300, 400)):
try:
webapp = (r2.headers['Location'])
hostx.apps.append(webapp)
hn = pattern_url.sub('', webapp)
if hn not in hostx.hname:
hostx.hname.append(hn)
except BaseException:
return
except BaseException:
return
# queryAPI Function
def queryAPI(url, hostx):
try:
r2 = requests.get(url + hostx.address, custom_headers).text
if (r2.find("No DNS A records found") == -
1) and (r2.find("API count exceeded") == -
1 and r2.find("error") == -
1):
for host in r2.split('\n'):
if (host == "") or (host in hostx.hname):
pass
else:
hostx.hname.append(host)
# Add API count exceed detection
else:
pass
except (requests.exceptions.ConnectionError,
urllib3.connection.ConnectionError,
urllib3.exceptions.ConnectTimeoutError,
urllib3.exceptions.MaxRetryError,
urllib3.exceptions.TimeoutError, socket.error, socket.timeout):
print("\n[*] Error: connecting with HackerTarget.com API")
finally:
sleep(0.5)
def reverseiplookup(hostx):
try:
rhostname = socket.gethostbyaddr(hostx.address)[0]
except socket.error:
return
if (rhostname not in hostx.hname):
hostx.hname.append(rhostname)
return
# Capture SIGINT
def sig_handler(signal, frame):
print("\n[!] HostHunter is shutting down!")
try:
driver.close()
driver.quit()
signal.pause()
except BaseException:
pass
print("\n[!] See you soon...\n")
sys.exit(0)
# Write Function
def write_results():
base_path=""
list_format=args.format.split(',')
list_format=[format_type.lower() for format_type in list_format]
# Output File Naming & Path
if not args.output:
base_path = "hh_"+ datetime.now().strftime("%d_%m_%Y-%H.%M.%S")
appsf = open(args.output+base_path+".webapps", "wt") # Write File
vhostsf = open(args.output+base_path+".vhosts", "wt")
vhostsf_csv = open(args.output+base_path+".vhosts.csv", "wt")
nessusf = open(args.output+base_path+".nessus", 'wt')
for format in list_format:
match format:
case "csv":
# Write Header in CSV File
vhostsf_csv.write(
"\"" +
"IP Address" +
"\",\"" +
"Port/Protocol" +
"\",\"" +
"Domains" +
"\",\"" +
"Operating System" +
"\",\"" +
"OS Version" +
"\",\"" +
"Notes" +
"\"\n") # vhosts.csv Header
# Merging the lists prooved Faster than list iterations
for item in data_dict:
for host in data_dict[item].hname:
hostnames = ','.join(data_dict[item].hname)
row = "\"" + data_dict[item].address + "\"," + "\"443/tcp\"" + \
"," + "\"" + hostnames + "\",\"\",\"\",\"\"" + "\n"
vhostsf_csv.write(row)
case "nessus":
# Nessus Function - Generates IP/Hostname pairs in Nessus tool format.
for item in data_dict:
for host in data_dict[item].hname:
row = host + "[" + data_dict[item].address + "], "
nessusf.write(row)
if not data_dict[item].hname:
nessusf.write(data_dict[item].address)
nessusf.close()
case "txt":
for item in data_dict:
for hname in data_dict[item].hname:
vhostsf.write(hname + "\n")
vhostsf.close()
# Write Results in TXT File
for item in data_dict:
#print(data_dict[item].address)
if (data_dict[item].apps):
apps = ','.join(data_dict[item].apps)
row = "\"" + data_dict[item].address
+ "\"," + "\"" + apps + "\"" + "\n"
appsf.write(row)
# Write Results in HTML File
# stats Function - Prints Statistics cause metrics are fun
def stats(start_time,counter,target_list):
print("\n" + "|" + "-" * 100 + "|", end="\n\n")
print(" Hunting Completed!", end="\n\n")
print(" Searched against",len(target_list),"targets",end="\n\n")
if counter == 0:
print(" 0 hostname was discovered in %s sec" %
(round(time() - start_time, 2)), end="\n\n")
else:
print(" %s hostnames were discovered in %s sec" %
(counter, round(time() - start_time, 2)), end="\n\n")
print("|" + "-" * 100 + "|")
# verify Function - Attempts to Verify Target IP Matches Hostname
def verify(hostx):
for item in hostx.hname:
try:
resolved = socket.gethostbyname_ex(item)
if hostx.address in resolved[2]:
print(item)
except:
continue
return len(hostx.hname)
def ipv6_on():
try:
# Create a socket for IPv6 and connect to ipv6.google.com on port 80
sock = socket.socket(socket.AF_INET6, socket.SOCK_STREAM)
sock.connect(("ipv6.google.com", 443))
return True
except socket.error:
return False
finally:
sock.close()
# Main Function
def main(argc, targets):
counter = 0
ports=args.grab.split(',')
if args.debug == True:
print("[!] Debug Mode: ON")
for ip in targets:
hostx = target(ip.replace("\n", ""))
if validate(hostx):
print("\n[+] Target: %s" % hostx.address)
else:
continue
# Reverse DNS Lookup
reverseiplookup(hostx)
if ipv6_enabled==True & hostx.ipv6==True:
sslGrabber6(hostx,443)
# Fetch SSL Certificates [Default: 21, 25, 443, 993, 8443]
for port in ports:
sslGrabber(hostx, port)
# Check 80/tcp over HTTP
analyze_header("Location", hostx)
# Querying HackerTarget.com API
queryAPI("https://api.hackertarget.com/reverseiplookup/?q=", hostx)
if hostx.hname:
if args.verify:
counter = verify(hostx)
else:
print("[+] Hostnames: ")
for item in hostx.hname:
print(item)
counter += 1
else:
print("[-] Hostnames: no results")
continue
if (hostx.apps):
print("[+] Web Apps:")
for url in hostx.apps:
print(url)
data_dict["hostx.address"] = hostx
# END FOR LOOP
# END IF
write_results()
return counter
# End of Main Function
# Main Module
if __name__ == "__main__":
signal.signal(signal.SIGINT, sig_handler) # Signal Listener
start_time = time() # Start Counter
initialise() # Input Argument Checks
display_banner() # Banner
targets = read_targets()
counter = main(sys.argv,targets) # Main Function
stats(start_time,counter,targets)
# EOF