forked from RedSiege/EyeWitness
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEyeWitness.py
More file actions
executable file
·594 lines (515 loc) · 24.6 KB
/
Copy pathEyeWitness.py
File metadata and controls
executable file
·594 lines (515 loc) · 24.6 KB
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
#!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK
import argparse
try:
import argcomplete
from argcomplete.completers import FilesCompleter
HAS_ARGCOMPLETE = True
except ImportError:
HAS_ARGCOMPLETE = False
FilesCompleter = None
import glob
import os
import re
import shutil
import signal
import sys
import time
import webbrowser
from modules import db_manager
from modules import objects
from modules import selenium_module
from modules.helpers import class_info
from modules.helpers import create_folders_css
from modules.helpers import default_creds_category
from modules.helpers import do_jitter
from modules.helpers import target_creator
from modules.helpers import title_screen
from modules.helpers import open_file_input
from modules.helpers import resolve_host
from modules.helpers import duplicate_check
from modules.reporting import create_table_head
from modules.reporting import create_web_index_head
from modules.reporting import sort_data_and_write
from multiprocessing import Manager
from multiprocessing import Process
from multiprocessing import current_process
import multiprocessing
from modules.platform_utils import PlatformManager, setup_virtual_display
from modules.resource_monitor import ResourceMonitor, check_disk_space, get_system_info
from modules.troubleshooting import get_progress_message
# Initialize platform manager
platform_mgr = PlatformManager()
def create_cli_parser():
parser = argparse.ArgumentParser(
add_help=False, description="EyeWitness is a tool used to capture\
screenshots from a list of URLs")
parser.add_argument('-h', '-?', '--h', '-help',
'--help', action="store_true", help=argparse.SUPPRESS)
protocols = parser.add_argument_group('Protocols')
protocols.add_argument('--web', default=True, action='store_true',
help='HTTP Screenshot using Selenium')
input_options = parser.add_argument_group('Input Options')
f_arg = input_options.add_argument('-f', metavar='Filename', default=None,
help='Line-separated file containing URLs to \
capture')
if HAS_ARGCOMPLETE and FilesCompleter:
f_arg.completer = FilesCompleter()
x_arg = input_options.add_argument('-x', metavar='Filename.xml', default=None,
help='Nmap XML or .Nessus file')
if HAS_ARGCOMPLETE and FilesCompleter:
x_arg.completer = FilesCompleter(allowednames='*.xml *.nessus', directories=True)
input_options.add_argument('--single', metavar='Single URL', default=None,
help='Single URL/Host to capture')
input_options.add_argument('--no-dns', default=False, action='store_true',
help='Skip DNS resolution when connecting to \
websites')
timing_options = parser.add_argument_group('Timing Options')
timing_options.add_argument('--timeout', metavar='Timeout', default=7, type=int,
help='Maximum number of seconds to wait while\
requesting a web page (Default: 7)')
timing_options.add_argument('--jitter', metavar='# of Seconds', default=0,
type=int, help='Randomize URLs and add a random\
delay between requests')
timing_options.add_argument('--delay', metavar='# of Seconds', default=0,
type=int, help='Delay between the opening of the navigator and taking the screenshot')
# Calculate default threads based on CPU cores (2 threads per core, max 20)
default_threads = min(multiprocessing.cpu_count() * 2, 20)
timing_options.add_argument('--threads', metavar='# of Threads', default=default_threads,
type=int, help=f'Number of threads to use (default: {default_threads} based on CPU cores)')
timing_options.add_argument('--max-retries', default=1, metavar='Max retries on \
a timeout'.replace(' ', ''), type=int,
help='Max retries on timeouts')
report_options = parser.add_argument_group('Report Output Options')
d_arg = report_options.add_argument('-d', metavar='Output Directory',
default=None,
help='Output directory for screenshots and reports')
if HAS_ARGCOMPLETE and FilesCompleter:
from argcomplete.completers import DirectoriesCompleter
d_arg.completer = DirectoriesCompleter()
report_options.add_argument('--results', metavar='Results/Page',
default=25, type=int, help='Number of results per report page (default: 25)')
report_options.add_argument('--no-prompt', default=False,
action='store_true',
help='Skip prompt to open report when complete')
report_options.add_argument('--no-clear', default=True,
action='store_true',
help='Don\'t clear screen buffer (default behavior)')
http_options = parser.add_argument_group('Web Options')
http_options.add_argument('--user-agent', metavar='User Agent',
default=None, help='User Agent to use for all\
requests')
http_options.add_argument('--difference', metavar='Difference Threshold',
default=50, type=int, help='Difference threshold\
when determining if user agent requests are\
close \"enough\" (Default: 50)')
http_options.add_argument('--proxy-ip', metavar='127.0.0.1', default=None,
help='IP of web proxy to go through')
http_options.add_argument('--proxy-port', metavar='8080', default=None,
type=int, help='Port of web proxy to go through')
http_options.add_argument('--proxy-type', metavar='socks5', default="http",
help='Proxy type (socks5/http)')
http_options.add_argument('--show-selenium', default=False,
action='store_true', help='Show display for selenium')
http_options.add_argument('--resolve', default=False,
action='store_true', help=("Resolve IP/Hostname"
" for targets"))
http_options.add_argument('--add-http-ports', default=[],
type=lambda s:[str(i) for i in s.split(",")],
help=("Comma-separated additional port(s) to assume "
"are http (e.g. '8018,8028')"))
http_options.add_argument('--add-https-ports', default=[],
type=lambda s:[str(i) for i in s.split(",")],
help=("Comma-separated additional port(s) to assume "
"are https (e.g. '8018,8028')"))
http_options.add_argument('--only-ports', default=[],
type=lambda s:[int(i) for i in s.split(",")],
help=("Comma-separated list of exclusive ports to "
"use (e.g. '80,8080')"))
http_options.add_argument('--prepend-https', default=False, action='store_true',
help='Prepend http:// and https:// to URLs without either')
http_options.add_argument('--validate-urls', default=False, action='store_true',
help='Only validate URLs without taking screenshots')
http_options.add_argument('--skip-validation', default=False, action='store_true',
help='Skip URL validation checks (use with caution)')
http_options.add_argument('--selenium-log-path', default='./chromedriver.log', action='store',
help='Selenium ChromeDriver log path')
http_options.add_argument('--cookies', metavar='key1=value1,key2=value2', default=None,
help='Additional cookies to add to the request')
http_options.add_argument('--width', metavar="1366", default=1366,type=int,
help='Screenshot window image width size. 600-7680 (eg. 1920)')
http_options.add_argument('--height', metavar="768", default=768, type=int,
help='Screenshot window image height size. 400-4320 (eg. 1080)')
resume_options = parser.add_argument_group('Resume Options')
resume_options.add_argument('--resume', metavar='ew.db',
default=None, help='Path to db file if you want to resume')
config_options = parser.add_argument_group('Configuration Options')
config_arg = config_options.add_argument('--config', metavar='config.json', default=None,
help='Configuration file path')
if HAS_ARGCOMPLETE and FilesCompleter:
config_arg.completer = FilesCompleter(allowednames='*.json', directories=True)
config_options.add_argument('--create-config', action='store_true',
help='Create sample configuration file')
# Enable bash tab completion if argcomplete is available
if HAS_ARGCOMPLETE:
argcomplete.autocomplete(parser)
args = parser.parse_args()
args.date = time.strftime('%Y/%m/%d')
args.time = time.strftime('%H:%M:%S')
# Handle config creation
if args.create_config:
from modules.config import ConfigManager
ConfigManager.create_sample_config()
sys.exit(0)
# Load config file if specified or found
from modules.config import ConfigManager
config = ConfigManager.load_config(args.config)
args = ConfigManager.apply_config_to_args(args, config)
if args.h:
parser.print_help()
sys.exit()
if args.f is None and args.single is None and args.resume is None and args.x is None:
print("[!] Error: No input specified")
print("[*] You must provide one of the following:")
print(" - URL file: -f urls.txt")
print(" - Single URL: --single http://example.com")
print(" - XML file: -x nmap.xml")
print(" - Resume scan: --resume")
print("[*] Run 'EyeWitness.py -h' for full help")
sys.exit(1)
if ((args.f is not None) and not os.path.isfile(args.f)) or ((args.x is not None) and not os.path.isfile(args.x)):
from modules.troubleshooting import get_error_guidance
if args.f and not os.path.isfile(args.f):
print(get_error_guidance('file_not_found', path=args.f))
if args.x and not os.path.isfile(args.x):
print(get_error_guidance('file_not_found', path=args.x))
sys.exit(1)
if args.width < 600 or args.width >7680:
print("\n[*] Error: Specify a width >= 600 and <= 7680, for example 1920.\n")
parser.print_help()
sys.exit()
if args.height < 400 or args.height >4320:
print("\n[*] Error: Specify a height >= 400 and <= 4320, for example, 1080.\n")
parser.print_help()
sys.exit()
if args.d is not None:
if args.d.startswith('/') or re.match(
'^[A-Za-z]:\\\\', args.d) is not None:
args.d = args.d.rstrip('/')
args.d = args.d.rstrip('\\')
else:
args.d = os.path.join(os.getcwd(), args.d)
if not os.access(os.path.dirname(args.d), os.W_OK):
print('[*] Error: Please provide a valid folder name/path')
parser.print_help()
sys.exit()
else:
if not args.no_prompt:
if os.path.isdir(args.d):
overwrite_dir = input(('Directory Exists! Do you want to '
'overwrite? [y/n] '))
overwrite_dir = overwrite_dir.lower().strip()
if overwrite_dir == 'n':
print('Quitting...Restart and provide the proper '
'directory to write to!')
sys.exit()
elif overwrite_dir == 'y':
shutil.rmtree(args.d)
pass
else:
print('Quitting since you didn\'t provide '
'a valid response...')
sys.exit()
else:
output_folder = args.date.replace(
'/', '-') + '_' + args.time.replace(':', '')
args.d = os.path.join(os.getcwd(), output_folder)
args.log_file_path = os.path.join(args.d, 'logfile.log')
if not any((args.resume, args.web)):
print("[*] Error: You didn't give me an action to perform.")
print("[*] Error: Please use --web!\n")
parser.print_help()
sys.exit()
if args.resume:
if not os.path.isfile(args.resume):
print(" [*] Error: No valid DB file provided for resume!")
sys.exit()
if args.proxy_ip is not None and args.proxy_port is None:
print("[*] Error: Please provide a port for the proxy!")
parser.print_help()
sys.exit()
if args.proxy_port is not None and args.proxy_ip is None:
print("[*] Error: Please provide an IP for the proxy!")
parser.print_help()
sys.exit()
if args.cookies:
cookies_list = []
for one_cookie in args.cookies.split(","):
if "=" not in one_cookie:
print("[*] Error: Cookies must be in the form of key1=value1,key2=value2")
sys.exit()
cookies_list.append({
"name": one_cookie.split("=")[0],
"value": one_cookie.split("=")[1]
})
args.cookies = cookies_list
args.ua_init = False
return args
def single_mode(cli_parsed):
display = None
driver = None
def exitsig(*args):
if current_process().name == 'MainProcess':
print('')
print('Quitting...')
os._exit(1)
signal.signal(signal.SIGINT, exitsig)
if cli_parsed.web:
create_driver = selenium_module.create_driver
capture_host = selenium_module.capture_host
# Setup virtual display with cross-platform handling
display = setup_virtual_display(platform_mgr, cli_parsed.show_selenium)
try:
url = cli_parsed.single
http_object = objects.HTTPTableObject()
http_object.remote_system = url
http_object.set_paths(
cli_parsed.d, None)
web_index_head = create_web_index_head(cli_parsed.date, cli_parsed.time)
driver = create_driver(cli_parsed)
result, driver = capture_host(cli_parsed, http_object, driver)
result = default_creds_category(result)
if cli_parsed.resolve:
result.resolved = resolve_host(result.remote_system)
html = result.create_table_html()
with open(os.path.join(cli_parsed.d, 'report.html'), 'w', encoding='utf-8') as f:
f.write(web_index_head)
f.write(create_table_head())
f.write(html)
f.write("</table><br>")
finally:
if driver:
driver.quit()
if display is not None:
display.stop()
def worker_thread(cli_parsed, targets, lock, counter, start_time, user_agent=None):
manager = None
driver = None
try:
manager = db_manager.DB_Manager(cli_parsed.d + '/ew.db')
manager.open_connection()
if cli_parsed.web:
create_driver = selenium_module.create_driver
capture_host = selenium_module.capture_host
with lock:
driver = create_driver(cli_parsed, user_agent)
while True:
http_object = targets.get()
if http_object is None:
break
# Try to ensure object values are blank
http_object._category = None
http_object._default_creds = None
http_object._error_state = None
http_object._page_title = None
http_object._ssl_error = False
http_object.category = None
http_object.default_creds = None
http_object.error_state = None
http_object.page_title = None
http_object.resolved = None
http_object.source_code = None
# Fix our directory if its resuming from a different path
if os.path.dirname(cli_parsed.d) != os.path.dirname(http_object.screenshot_path):
http_object.set_paths(
cli_parsed.d, None)
print('Attempting to screenshot {0}'.format(http_object.remote_system))
http_object.resolved = resolve_host(http_object.remote_system)
if user_agent is None:
http_object, driver = capture_host(
cli_parsed, http_object, driver)
if http_object.category is None and http_object.error_state is None:
http_object = default_creds_category(http_object)
manager.update_http_object(http_object)
else:
ua_object, driver = capture_host(
cli_parsed, http_object, driver)
if http_object.category is None and http_object.error_state is None:
ua_object = default_creds_category(ua_object)
manager.update_ua_object(ua_object)
counter[0].value += 1
# Show progress with ETA every 5 completions or at milestones
if counter[0].value % 5 == 0 or counter[0].value in [1, 10, 25, 50, 100]:
progress_msg = get_progress_message(
counter[0].value,
counter[1],
start_time.value if start_time.value > 0 else None
)
print(f'\x1b[32m{progress_msg}\x1b[0m')
do_jitter(cli_parsed)
except KeyboardInterrupt:
pass
except Exception as e:
print(f'[!] Worker thread error: {e}')
finally:
if manager:
manager.close()
if driver:
driver.quit()
def multi_mode(cli_parsed):
dbm = db_manager.DB_Manager(cli_parsed.d + '/ew.db')
dbm.open_connection()
if not cli_parsed.resume:
dbm.initialize_db()
dbm.save_options(cli_parsed)
m = Manager()
targets = m.Queue()
lock = m.Lock()
multi_counter = m.Value('i', 0)
start_time = m.Value('d', 0.0) # Track start time for ETA
display = None
def exitsig(*args):
dbm.close()
if current_process().name == 'MainProcess':
print('')
print('Resume using ./EyeWitness.py --resume {0}'.format(cli_parsed.d + '/ew.db'))
os._exit(1)
signal.signal(signal.SIGINT, exitsig)
if cli_parsed.resume:
pass
else:
url_list = target_creator(cli_parsed)
if cli_parsed.web:
for url in url_list:
dbm.create_http_object(url, cli_parsed)
if cli_parsed.web:
# Setup virtual display with cross-platform handling
display = setup_virtual_display(platform_mgr, cli_parsed.show_selenium)
# Initialize resource monitor
resource_monitor = ResourceMonitor(memory_limit_percent=80)
# Check disk space before starting
has_space, available_gb, total_gb = check_disk_space(cli_parsed.d, min_gb=1)
if not has_space:
print(f'[!] Warning: Low disk space! Only {available_gb:.1f}GB available')
print('[!] Consider freeing space or using a different output directory')
# Get system info and recommended threads
print(f'[*] {get_system_info()}')
multi_total = dbm.get_incomplete_http(targets)
if multi_total > 0:
if cli_parsed.resume:
print('Resuming Web Scan ({0} Hosts Remaining)'.format(str(multi_total)))
else:
print('Starting Web Requests ({0} Hosts)'.format(str(multi_total)))
# Adjust thread count based on workload and resources
recommended_threads = resource_monitor.get_recommended_threads(cli_parsed.threads)
if recommended_threads < cli_parsed.threads:
print(f'[*] Adjusting threads from {cli_parsed.threads} to {recommended_threads} based on available memory')
if multi_total < recommended_threads:
num_threads = multi_total
else:
num_threads = recommended_threads
print(f'[*] Using {num_threads} threads for processing')
for i in range(num_threads):
targets.put(None)
try:
start_time.value = time.time() # Set start time
workers = [Process(target=worker_thread, args=(
cli_parsed, targets, lock, (multi_counter, multi_total), start_time)) for i in range(num_threads)]
for w in workers:
w.start()
for w in workers:
w.join()
except Exception as e:
print(str(e))
if display is not None:
display.stop()
results = dbm.get_complete_http()
dbm.close()
m.shutdown()
sort_data_and_write(cli_parsed, results)
if __name__ == "__main__":
cli_parsed = create_cli_parser()
start_time = time.time()
title_screen(cli_parsed)
if cli_parsed.resume:
print('[*] Loading Resume Data...')
temp = cli_parsed
dbm = db_manager.DB_Manager(cli_parsed.resume)
dbm.open_connection()
cli_parsed = dbm.get_options()
cli_parsed.d = os.path.dirname(temp.resume)
cli_parsed.resume = temp.resume
if temp.results:
cli_parsed.results = temp.results
dbm.close()
print('Loaded Resume Data with the following options:')
engines = []
if cli_parsed.web:
engines.append('Firefox')
print('')
print('Input File: {0}'.format(cli_parsed.f))
print('Engine(s): {0}'.format(','.join(engines)))
print('Threads: {0}'.format(cli_parsed.threads))
print('Output Directory: {0}'.format(cli_parsed.d))
print('Timeout: {0}'.format(cli_parsed.timeout))
print('')
else:
create_folders_css(cli_parsed)
# Handle validate-only mode
if cli_parsed.validate_urls:
print('[*] Running in URL validation mode only')
from modules.validation import validate_url_list
from modules.helpers import target_creator
url_list = target_creator(cli_parsed)
valid_urls, invalid_urls = validate_url_list(url_list, require_scheme=False)
print(f'\n[*] Validation Results:')
print(f' - Valid URLs: {len(valid_urls)}')
print(f' - Invalid URLs: {len(invalid_urls)}')
if invalid_urls:
print('\n[!] Invalid URLs found:')
for url, error in invalid_urls[:20]: # Show first 20
print(f' - {url}: {error}')
if len(invalid_urls) > 20:
print(f' ... and {len(invalid_urls) - 20} more')
# Write valid URLs to file
if valid_urls:
valid_file = os.path.join(cli_parsed.d, 'valid_urls.txt')
with open(valid_file, 'w') as f:
for url in valid_urls:
f.write(url + '\n')
print(f'\n[*] Valid URLs written to: {valid_file}')
if invalid_urls:
invalid_file = os.path.join(cli_parsed.d, 'invalid_urls.txt')
with open(invalid_file, 'w') as f:
for url, error in invalid_urls:
f.write(f'{url} # {error}\n')
print(f'[*] Invalid URLs written to: {invalid_file}')
print(f'\n[*] Validation completed in {time.time() - start_time:.2f} seconds')
sys.exit(0)
if cli_parsed.single:
if cli_parsed.web:
single_mode(cli_parsed)
if not cli_parsed.no_prompt:
open_file = open_file_input(cli_parsed)
if open_file:
files = glob.glob(os.path.join(cli_parsed.d, '*report.html'))
for f in files:
webbrowser.open(f)
class_info()
sys.exit()
class_info()
sys.exit()
if cli_parsed.f is not None or cli_parsed.x is not None:
multi_mode(cli_parsed)
duplicate_check(cli_parsed)
print('Finished in {0} seconds'.format(time.time() - start_time))
if not cli_parsed.no_prompt:
open_file = open_file_input(cli_parsed)
if open_file:
files = glob.glob(os.path.join(cli_parsed.d, '*report.html'))
for f in files:
webbrowser.open(f)
class_info()
sys.exit()
class_info()
sys.exit()