forked from OWASP/Nettacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
36 lines (34 loc) · 1.03 KB
/
config.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def get_config():
return { # OWASP Nettacker Default Configuration
"language": "en",
# "verbose_level": 0,
# "show_version": False,
# "check_update": False,
# "log_in_file": "results.html",
# "graph_flag": "d3_tree_v1_graph",
# "help_menu_flag": False,
# "targets": None,
# "targets_list": None,
# "scan_method": None,
# "exclude_method": None,
# "users": None,
# "users_list": None,
# "passwds": None,
# "passwds_list": None,
# "ports": None,
# "timeout_sec": 3.0,
# "time_sleep": 0.0,
# "check_ranges": False,
# "check_subdomains": False,
# "thread_number": 10,
# "thread_number_host": 10,
# "proxies": None,
# "proxies_file": None,
# "retries": 3,
# "ping_flag": False,
# "methods_args": None,
# "method_args_list": False,
# "startup_check_for_update": True
}