-
Notifications
You must be signed in to change notification settings - Fork 6
/
settings.conf
123 lines (112 loc) · 2.27 KB
/
settings.conf
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
[DEFAULT]
# Set a timeout for each request made
#
# Default: none
# Values: int, none
# Flags: --timeout, -t
#
# Example:
# timeout=5
timeout=none
# Wether to create a result folder or not.
# This also includes all files that would be
# saved there
#
# Default: on
# Values: on, off
create_file_output=on
# Exclude specific domain names from the sites pool
#
# Default: ''
# Values: example.com
# Flags: --exclude, -e
#
# Multiple sites can be passed when seperating
# them with a comma
#
# See ./src/data/pool.json for a list of sites
#
# exclude=example.com, example2.com, example3.com
exclude=
# Exclude specific domain names from the sites pool
# if they belong to the given categories
#
# Default: ''
# Values: category
# Flags: --exclude-category, -E
#
# Multiple categories can be passed when seperating
# them with a comma
#
# See ./src/models/category.py for more info about categories
#
# exclude_category=category1, category2, category3
exclude_category=
# Exclude sites from the sites pool if they
# do not match the given domain names
#
# Default: ''
# Values: example.com
# Flags: --only, -o
#
# Multiple sites can be passed when seperating
# them with a comma
#
# See ./src/data/pool.json for a list of sites
#
# only=example.com, example2.com, example3.com
only=
# Exclude sites from the sites pool
# if they do not belong to the given categories
#
# Default: ''
# Values: category
# Flags: --only-category, -O
#
# Multiple categories can be passed when seperating
# them with a comma
#
# See ./src/models/category.py for more info about categories
#
# Example:
# only_category=category1, category2, category3
only_category=
# Open successfull results in the default
# webbrowser
#
# Default: off
# Values: on, off
# Flags: --browse, -b
browse=off
# Print additional information while running
#
# Default: off
# Values: on, off
# Flags: --verbose, -v
verbose=off
# Print all results
#
# Default: off
# Values: on, off
# Flags: --all, -a
all=off
# Print logo on startup
#
# Default: on
# Values: on, off
print_logo=on
# Retrieve and print your IP on program startup
#
# Default: off
# Values: on, off
# Flags: --ip-check
ip_check=off
# Set a timeout for the IP request.
# ip_check must be enabled for this to take action
#
# Default: none
# Values: int, none
#
# Example:
# ip_timeout=5
ip_timeout=none