-
Notifications
You must be signed in to change notification settings - Fork 284
/
gyoithon.py
672 lines (583 loc) · 32.9 KB
/
gyoithon.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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import os
import sys
import codecs
import time
import re
import random
import glob
import configparser
import urllib3
from docopt import docopt
from urllib3 import util
from util import Utilty
from modules.Gyoi_CloudChecker import CloudChecker
from modules.Gyoi_VersionChecker import VersionChecker
from modules.Gyoi_VersionCheckerML import VersionCheckerML
from modules.Gyoi_CommentChecker import CommentChecker
from modules.Gyoi_ErrorChecker import ErrorChecker
from modules.Gyoi_Report import CreateReport
from modules.Gyoi_PageTypeChecker import PageChecker
from modules.Gyoi_GoogleHack import GoogleCustomSearch
from modules.Gyoi_ContentExplorer import ContentExplorer
from modules.Gyoi_SpiderControl import SpiderControl
from modules.Gyoi_CveExplorerNVD import CveExplorerNVD
from modules.Gyoi_Exploit import Exploit
from modules.Gyoi_Censys import Censys
from modules.Gyoi_Creator import Creator
from modules.Gyoi_Inventory import Inventory
from modules.Gyoi_DomainTools import DomainTools
from modules.Gyoi_ComputerVision import ComputerVision
from urllib3.exceptions import InsecureRequestWarning
urllib3.disable_warnings(InsecureRequestWarning)
# Type of printing.
OK = 'ok' # [*]
NOTE = 'note' # [+]
FAIL = 'fail' # [-]
WARNING = 'warn' # [!]
NONE = 'none' # No label.
# Get target information.
def get_target_info(full_path, utility):
msg = utility.make_log_msg(utility.log_in, utility.log_dis, os.path.basename(__file__), note='Get target information')
utility.write_log(20, msg)
protocol = []
fqdn = []
port = []
path = []
try:
with codecs.open(os.path.join(full_path, 'host.txt'), 'r', 'utf-8') as fin:
targets = fin.readlines()
for target in targets:
items = target.replace('\r', '').replace('\n', '').split(' ')
if len(items) != 4:
utility.print_message(FAIL, 'Invalid target record : {}'.format(target))
utility.write_log(30, 'Invalid target record : {}'.format(target))
continue
protocol.append(items[0])
fqdn.append(items[1])
port.append(items[2])
path.append(items[3])
except Exception as e:
utility.print_message(FAIL, 'Invalid file: {}'.format(e))
utility.write_log(30, 'Invalid file: {}'.format(e))
msg = utility.make_log_msg(utility.log_out, utility.log_dis, os.path.basename(__file__), note='Get target information')
utility.write_log(20, msg)
return protocol, fqdn, port, path
# Display banner.
def show_banner(utility):
banner = """
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
██████╗██╗ ██╗ ██████╗ ██╗████████╗██╗ ██╗ ██████╗ ███╗ ██╗
██╔════╝╚██╗ ██╔╝██╔═══██╗██║╚══██╔══╝██║ ██║██╔═══██╗████╗ ██║
██║ ███╗╚████╔╝ ██║ ██║██║ ██║ ███████║██║ ██║██╔██╗ ██║
██║ ██║ ╚██╔╝ ██║ ██║██║ ██║ ██╔══██║██║ ██║██║╚██╗██║
╚██████╔╝ ██║ ╚██████╔╝██║ ██║ ██║ ██║╚██████╔╝██║ ╚████║
╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ (beta)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
""" + 'by ' + os.path.basename(__file__)
utility.print_message(NONE, banner)
show_credit(utility)
time.sleep(utility.banner_delay)
# Show credit.
def show_credit(utility):
credit = u"""
=[ GyoiThon v0.0.4-beta ]=
+ -- --=[ Author : Gyoiler (@gyoithon) ]=--
+ -- --=[ Website : https://github.com/gyoisamurai/GyoiThon/ ]=--
"""
utility.print_message(NONE, credit)
# Divide log.
def divide_log_size(path, clipping_size, clipping_buff):
target_logs = []
target_log = ''
read_data_size = 0
clipping_idx = 0
# Dividing byte size.
content_length = os.path.getsize(path)
while read_data_size < content_length:
with codecs.open(path, 'r', 'utf-8') as fin:
if clipping_idx != 0:
# Add buffer size to reading pointer.
read_data_size -= clipping_buff
fin.seek(read_data_size)
# Read data from log file.
try:
target_log = fin.read(clipping_size)
except Exception as e:
utility.print_exception(e, '{}. Skip this data range.'.format(clipping_idx + 1))
read_data_size += clipping_size
clipping_idx += 1
continue
# Add to log list.
target_logs.append(target_log)
# Update reading pointer.
read_data_size += len(target_log)
msg = '{}. Divided log that size is {}'.format(clipping_idx + 1, len(target_log))
utility.print_message(OK, msg)
clipping_idx += 1
return target_logs
# Divide data.
def divide_data_size(data, clipping_size, clipping_buff):
target_datas = []
# Dividing byte size.
target_datas.append(data[:clipping_size])
if len(data) > clipping_size:
target_datas.extend([data[i-clipping_buff: i + clipping_size] for i in range(clipping_size,
len(data),
clipping_size)])
return target_datas
# Define command option.
__doc__ = """{f}
usage:
{f} [-s] [-m] [-g] [-e] [-c] [-p] [-l --log_path=<path>] [--no-update-vulndb] [--gyoiboard]
{f} [-d --category=<category> --vendor=<vendor> --package=<package>]
{f} [-i --org_list --domain_list --screen_shot --through_health_check --safety --gyoiboard --no-update-vulndb]
{f} -h | --help
options:
-s Optional : Examine cloud service.
-m Optional : Analyze HTTP response for identify product/version using Machine Learning.
-g Optional : Google Custom Search for identify product/version.
-e Optional : Explore default path of product.
-c Optional : Discover open ports and wrong ssl server certification using Censys.
-p Optional : Execute exploit module using Metasploit.
-l Optional : Analyze log based HTTP response for identify product/version.
-d Optional : Development of signature and train data.
-i Optional : Explore relevant FQDN with the target FQDN.
-h --help Show this help message and exit.
""".format(f=__file__)
# main.
if __name__ == '__main__':
file_name = os.path.basename(__file__)
full_path = os.path.dirname(os.path.abspath(__file__))
utility = Utilty()
utility.write_log(20, '[In] GyoiThon [{}].'.format(file_name))
# Get command arguments.
args = docopt(__doc__)
opt_cloud = args['-s']
opt_ml = args['-m']
opt_gcs = args['-g']
opt_explore = args['-e']
opt_censys = args['-c']
opt_exploit = args['-p']
opt_log = args['-l']
opt_log_path = args['--log_path']
opt_develop = args['-d']
opt_develop_category = args['--category']
opt_develop_vendor = args['--vendor']
opt_develop_package = args['--package']
opt_invent = args['-i']
opt_invent_org_list = args['--org_list']
opt_invent_domain_list = args['--domain_list']
opt_invent_screen_shot = args['--screen_shot']
opt_invent_through_health_check = args['--through_health_check']
opt_invent_safety = args['--safety']
opt_no_update_vulndb = args['--no-update-vulndb']
opt_gyoiboard = args['--gyoiboard']
# Read config.ini.
config = configparser.ConfigParser()
config.read(os.path.join(full_path, 'config.ini'))
# Common setting value.
log_path = ''
method_crawl = ''
method_log = ''
max_target_url = 0
max_target_byte = 0
clipping_regex = ''
clipping_size = 0
clipping_buff = 0
clipping_mark = ''
is_scramble = False
try:
log_dir = config['Common']['log_path']
log_path = os.path.join(full_path, log_dir)
method_crawl = config['Common']['method_crawl']
method_log = config['Common']['method_log']
max_target_url = int(config['Common']['max_target_url'])
max_target_byte = int(config['Common']['max_target_byte'])
clipping_regex = config['Common']['clipping_regex']
clipping_size = int(config['Common']['clipping_size'])
if clipping_size <= 0:
clipping_size = 10000
clipping_buff = int(config['Common']['clipping_buff'])
if clipping_buff <= 0:
clipping_buff = 200
clipping_mark = config['Common']['clipping_mark']
if int(config['Common']['scramble']) == 1:
is_scramble = True
except Exception as e:
msg = 'Reading config.ini is failure : {}'.format(e)
utility.print_exception(e, msg)
utility.write_log(40, msg)
utility.write_log(20, '[Out] GyoiThon [{}].'.format(file_name))
exit(1)
# Show banner.
show_banner(utility)
# Define target information's container for health check.
protocol_list = []
fqdn_list = []
port_list = []
path_list = []
# Create signature and train data.
if opt_develop:
creator = Creator(utility)
creator.extract_file_structure(opt_develop_category, opt_develop_vendor, opt_develop_package)
print(os.path.basename(__file__) + ' finish!!')
utility.write_log(20, '[Out] GyoiThon [{}].'.format(file_name))
sys.exit(0)
# Explore relevant FQDN with the target FQDN.
report_path = None
invent_report_header = None
inventory = None
if opt_invent:
# Create path.
org_list_path = os.path.join(full_path, 'organization_list.csv')
domain_list_path = os.path.join(full_path, 'domain_list.csv')
# Create instances.
inventory = Inventory(utility)
google_hack = GoogleCustomSearch(utility)
cv = ComputerVision(utility)
report = CreateReport(utility)
# Define report header for continuous health check.
invent_report_header = report.header_invent
if opt_invent_screen_shot:
invent_report_header.extend(report.header_ss)
# Explore domains and subdomains from domain list.
if opt_invent_domain_list is not None and os.path.exists(domain_list_path):
# Get import path of domain list.
# Search domain.
domain_info_dict_tmp = inventory.domain_explore(import_list=domain_list_path)
# Search sub-domain.
inventory.sub_domain_explore(domain_info_dict_tmp, google_hack)
# Create report.
report = CreateReport(utility)
report_path = report.create_inventory_report(inventory.tmp_inventory_dir,
search_word='',
search_type='List')
# Get Screen Shot and Add report.
if opt_invent_screen_shot:
screen_shot_list, df_report = cv.get_web_screen_shot(report_path)
report.add_ss_items_to_inventory_report(report_path, screen_shot_list, df_report)
if opt_gyoiboard:
inventory.push_result_to_gyoiboard(inventory.tmp_inventory_dir)
# Explore domains and subdomains from search result of DomainTools.
elif opt_invent_org_list is not None and os.path.exists(org_list_path):
# Create DomainTools instance.
dt = DomainTools(utility)
with codecs.open(org_list_path, 'r', 'utf-8') as fin:
targets = fin.readlines()
for target in targets:
items = target.replace('\r', '').replace('\n', '').split('\t')
if len(items) != 2:
utility.print_message(FAIL, 'Invalid inventory target : {}'.format(target))
continue
search_word = items[0]
search_type = items[1]
# Check arguments.
if search_type not in ['Organization', 'Email', 'NS']:
utility.print_message(FAIL, 'Invalid search type : {}'.format(search_type))
continue
# Search domain.
domain_info_dict_tmp = inventory.domain_explore(dt,
search_word=search_word,
search_type=search_type)
# Search sub-domain.
inventory.sub_domain_explore(domain_info_dict_tmp, google_hack)
# Create report.
report = CreateReport(utility)
report_path = report.create_inventory_report(inventory.tmp_inventory_dir,
search_word=search_word,
search_type=search_type)
# Get Screen Shot and Add report.
if opt_invent_screen_shot:
screen_shot_list, df_report = cv.get_web_screen_shot(report_path)
report.add_ss_items_to_inventory_report(report_path, screen_shot_list, df_report)
else:
utility.print_message(FAIL, 'Required lists are not found : {}.')
if opt_invent_through_health_check is False:
exit(0)
else:
utility.print_message(NOTE, 'GyoiThon continues to the health check.')
domain_list_path = os.path.join(full_path, 'domain_list.csv')
protocol_list, fqdn_list, port_list, path_list = inventory.extract_host_info(report_path,
invent_report_header,
opt_invent_safety,
domain_list_path)
# Create instances.
cloud_checker = CloudChecker(utility)
version_checker = VersionChecker(utility)
version_checker_ml = VersionCheckerML(utility)
comment_checker = CommentChecker(utility)
error_checker = ErrorChecker(utility)
page_checker = PageChecker(utility)
google_hack = GoogleCustomSearch(utility)
content_explorer = ContentExplorer(utility)
spider = SpiderControl(utility)
report = CreateReport(utility)
cve_explorer = CveExplorerNVD(utility, opt_no_update_vulndb)
censys = Censys(utility)
# Get target information from "host.txt".
if opt_invent_through_health_check is False:
protocol_list, fqdn_list, port_list, path_list = get_target_info(full_path, utility)
# Start investigation.
for idx in range(len(fqdn_list)):
# Check parameters.
utility.target_host = fqdn_list[idx]
msg = 'investigation : {}, {}, {}, {}'.format(protocol_list[idx],
fqdn_list[idx],
port_list[idx],
path_list[idx])
utility.write_log(20, 'Start ' + msg)
if utility.check_arg_value(protocol_list[idx], fqdn_list[idx], port_list[idx], path_list[idx]) is False:
msg = 'Invalid parameter : {}, {}, {}, {}'.format(protocol_list[idx], fqdn_list[idx],
port_list[idx], path_list[idx])
utility.print_message(FAIL, msg)
utility.write_log(30, msg)
continue
# Create report header.
report.create_report_header(fqdn_list[idx], port_list[idx])
# Check cloud service.
cloud_type = 'Unknown'
if opt_cloud:
cloud_type = cloud_checker.get_cloud_service(fqdn_list[idx])
# Search Censys.
if opt_censys:
date = utility.get_current_date('%Y%m%d%H%M%S%f')[:-3]
print_date = utility.transform_date_string(utility.transform_date_object(date[:-3], '%Y%m%d%H%M%S'))
server_info, cert_info = censys.search_censys(utility.forward_lookup(fqdn_list[idx]), fqdn_list[idx])
report.create_censys_report(fqdn_list[idx],
port_list[idx],
server_info,
cert_info,
print_date)
# Analysis HTTP responses.
product_list = []
if opt_log:
# Check stored logs.
if os.path.exists(opt_log_path) is False:
utility.print_message(FAIL, 'Path not found: {}'.format(opt_log_path))
utility.write_log(30, 'Path not found : {}'.format(opt_log_path))
utility.write_log(20, '[Out] Analyze log [{}].'.format(os.path.basename(__file__)))
else:
log_list = glob.glob(os.path.join(opt_log_path, '*.log'))
for log_idx, path in enumerate(log_list):
try:
target_logs = []
# Clipping log.
if max_target_byte > 0:
utility.print_message(WARNING, 'Cutting response byte {} to {}.'
.format(os.path.getsize(path), max_target_byte))
with codecs.open(path, 'r', 'utf-8') as fin:
try:
target_logs.append(['No identification', [fin.read(max_target_byte)]])
except Exception as e:
utility.print_exception(e, 'Skip this log : {}'.format(path))
continue
# Dividing log.
else:
# Dividing trigger string.
if clipping_regex != '':
with codecs.open(path, 'r', 'utf-8') as fin:
try:
utility.print_message(WARNING, 'Dividing log per trigger string.')
target_log = fin.read()
tmp_logs = re.split(clipping_regex, target_log)
# Dividing byte size.
for tmp_log in tmp_logs:
# Get target identification.
target_id = 'No identification'
results = re.findall(clipping_mark, tmp_log)
if len(results) > 0:
target_id = results[0]
# Divide log.
divided_logs = []
divided_logs.extend(divide_data_size(tmp_log, clipping_size, clipping_buff))
target_logs.append([target_id, divided_logs])
except Exception as e:
# Dividing byte size.
utility.print_exception(e, 'Dividing log per clipping size.')
divided_logs = []
divided_logs.extend(divide_log_size(path, clipping_size, clipping_buff))
target_logs.append(['No identification', divided_logs])
else:
# Dividing byte size.
divided_logs = []
utility.print_message(WARNING, 'Dividing log per clipping size.')
divided_logs.extend(divide_log_size(path, clipping_size, clipping_buff))
target_logs.append(['No identification', divided_logs])
# Analyze gathered logs.
for target_item in target_logs:
target_id = target_item[0]
for log_idx2, target_log in enumerate(target_item[1]):
date = utility.get_current_date('%Y%m%d%H%M%S%f')[:-3]
print_date = utility.transform_date_string(
utility.transform_date_object(date[:-3], '%Y%m%d%H%M%S'))
msg = '{}/{}-{}/{} Checking : Log: {}'.format(log_idx + 1, len(log_list),
log_idx2 + 1, len(target_logs),
path)
utility.print_message(OK, msg)
utility.write_log(20, msg)
# Check product name/version using signature.
product_list = version_checker.get_product_name(target_log)
# Check product name/version using Machine Learning.
if opt_ml:
product_list.extend(version_checker_ml.get_product_name(target_log))
# Get CVE for products.
product_list = cve_explorer.cve_explorer(product_list)
# Check unnecessary comments.
comments, comment_list = comment_checker.get_bad_comment(target_log)
# Save all gotten comments to the local file.
boundary = '-' * 5 + '[' + path + ']' + '-' * 5 + '\n' + date + '\n'
comment_log_name = 'all_comments.log'
comment_log_path = os.path.join(opt_log_path, comment_log_name)
with codecs.open(comment_log_path, 'a', 'utf-8') as fout:
fout.write(boundary)
for comment in comment_list:
fout.write(comment + '\n')
# Check unnecessary error messages.
errors = error_checker.get_error_message(target_log)
# Create report.
report.create_report_body(target_id,
fqdn_list[idx],
port_list[idx],
cloud_type,
method_log,
product_list,
{},
comments,
errors,
'-',
path,
print_date,
'-')
except Exception as e:
utility.print_exception(e, 'Could not read the log : {}'.format(path))
utility.write_log(30, 'Could not read the log : {}'.format(path))
else:
# Check encoding.
test_url = ''
if int(port_list[idx]) in [80, 443]:
test_url = protocol_list[idx] + '://' + fqdn_list[idx] + path_list[idx]
else:
test_url = protocol_list[idx] + '://' + fqdn_list[idx] + ':' + port_list[idx] + path_list[idx]
_, server_header, res_header, res_body, encoding = utility.send_request('GET', test_url)
# Gather target url using Spider.
spider.utility.encoding = encoding
web_target_info, _ = spider.run_spider(protocol_list[idx], fqdn_list[idx], port_list[idx], path_list[idx])
# Add favicon.ico to target list.
web_target_info[0][2].insert(0, protocol_list[idx] + '://' + fqdn_list[idx] + '/favicon.ico')
# Get HTTP responses.
for target in web_target_info:
# Scramble and Cutting loop count.
target_list = target[2]
if is_scramble is True:
utility.print_message(WARNING, 'Scramble target list.')
target_list = random.sample(target[2], len(target[2]))
if max_target_url != 0 and max_target_url < len(target_list):
utility.print_message(WARNING, 'Cutting target list {} to {}.'.format(len(target[2]),
max_target_url))
target_list = target_list[:max_target_url]
for count, target_url in enumerate(target_list):
target_datas = []
utility.print_message(NOTE, '{}/{} Start analyzing: {}'.format(count+1,
len(target_list),
target_url))
# Check target url.
parsed = None
try:
parsed = util.parse_url(target_url)
except Exception as e:
utility.print_exception(e, 'Parsed error : {}'.format(target_url))
utility.write_log(30, 'Parsed error : {}'.format(target_url))
continue
# Get HTTP response (header + body).
date = utility.get_current_date('%Y%m%d%H%M%S%f')[:-3]
print_date = utility.transform_date_string(utility.transform_date_object(date[:-3], '%Y%m%d%H%M%S'))
_, server_header, res_header, res_body, _ = utility.send_request('GET', target_url)
# Write log.
log_name = protocol_list[idx] + '_' + fqdn_list[idx] + '_' + str(port_list[idx]) + '_' + date + '.log'
log_path_fqdn = os.path.join(log_path, fqdn_list[idx] + '_' + str(port_list[idx]))
if os.path.exists(log_path_fqdn) is False:
os.mkdir(log_path_fqdn)
log_file = os.path.join(log_path_fqdn, log_name)
with codecs.open(log_file, 'w', 'utf-8') as fout:
fout.write(target_url + '\n\n' + res_header + '\n\n' + res_body)
# Cutting response byte.
if max_target_byte > 0:
utility.print_message(WARNING, 'Cutting response byte {} to {}.'.format(len(res_body),
max_target_byte))
target_datas.append(res_body[:max_target_byte])
else:
# Divide response byte.
target_datas.extend(divide_data_size(res_body, clipping_size, clipping_buff))
utility.print_message(WARNING, 'Divided response byte to {}.'.format(len(target_datas)))
for data_idx, target_data in enumerate(target_datas):
msg = '{}/{} Checking : divided data: {}'.format(data_idx + 1, len(target_datas), target_url)
utility.print_message(OK, msg)
if data_idx == 0:
target_data = res_header + target_data
# Check product name/version using signature.
product_list = version_checker.get_product_name(target_data)
# Check product name/version using Machine Learning.
if opt_ml:
product_list.extend(version_checker_ml.get_product_name(target_data))
# Get CVE for products.
product_list = cve_explorer.cve_explorer(product_list)
# Check unnecessary comments.
comments, comment_list = comment_checker.get_bad_comment(target_data)
# Save all gotten comments to the local file.
boundary = '-' * 5 + '[' + target_url + ']' + '-' * 5 + '\n' + date + '\n'
comment_log_name = 'all_comments.log'
comment_log_path = os.path.join(log_path_fqdn, comment_log_name)
with codecs.open(comment_log_path, 'a', 'utf-8') as fout:
fout.write(boundary)
for comment in comment_list:
fout.write(comment + '\n')
# Check unnecessary error messages.
errors = error_checker.get_error_message(target_data)
# Check login page.
page_type = page_checker.judge_page_type(target_url, target_data)
# Create report.
report.create_report_body(target_url,
fqdn_list[idx],
port_list[idx],
cloud_type,
method_crawl,
product_list,
page_type,
comments,
errors,
server_header,
log_file,
print_date,
test_url)
# Check unnecessary contents using Google Hack.
if opt_gcs:
product_list = google_hack.execute_google_hack(cve_explorer,
fqdn_list[idx],
port_list[idx],
report,
max_target_byte)
# Check unnecessary contents using Explore contents.
if opt_explore:
product_list.extend(content_explorer.content_explorer(cve_explorer,
protocol_list[idx],
fqdn_list[idx],
port_list[idx],
path_list[idx],
report,
max_target_byte))
# Execute exploitation.
if opt_exploit:
exploit = Exploit(utility)
exploit_product = list(map(list, set(map(tuple, [[products[1], products[2]] for products in product_list]))))
exploit.exploit({'fqdn': fqdn_list[idx],
'ip': utility.forward_lookup(fqdn_list[idx]),
'port': int(port_list[idx]),
'prod_list': exploit_product,
'path': path_list[idx].replace('/', '')})
# Create exploiting report.
report.create_exploit_report(fqdn_list[idx], port_list[idx])
utility.write_log(20, 'End ' + msg)
print(os.path.basename(__file__) + ' finish!!')
utility.write_log(20, '[Out] GyoiThon [{}].'.format(file_name))