-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.py
38 lines (35 loc) · 1.41 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
37
38
import os
# File paths
program_path = os.getcwd() + "/"
apis_folder_path = program_path + "APIs/"
dnsdumpster_script_file = apis_folder_path + "API-dnsdumpster.com/api.py"
pwndb_script_file = apis_folder_path + "pwndb/pwndb.py"
harvester_location = apis_folder_path + "theHarvester/"
gobuster_file = apis_folder_path + "gobuster/gobuster"
sublist3r_file = apis_folder_path + "Sublist3r/sublist3r.py"
# Subdomain Enumeration Setting
amass_active = True
gobuster_active = True
gobuster_dictionary = apis_folder_path + "bitquark-subdomains-top100000.txt"
gobuster_threads = 10
dnsdumpster_active = True
sublist3r_active = True
fdns_active = False
fdns_file = "/media/root/Seagate Expansion Drive/fdns.json.gz"
theharvester_active = True
pwndb_active = True
dig_timeout = 5
blacklist_words = "akamai,telefonica,microsoft"
tmux_session_name = "subdoler"
# Temporary files
temp_domains_file = "subdoler_temp_domains"
temp_ranges_file = "subdoler_temp_ranges"
temp_companies_file = "subdoler_temp_companies"
amass_output_file = "subdoler_temp_amass"
dnsdumpster_output_file = "subdoler_temp_dnsdumpster"
gobuster_output_file = "subdoler_temp_gobuster"
fdns_output_file = "subdoler_temp_fdns"
pwndb_output_file = "subdoler_temp_pwndb"
harvester_output_file = "subdoler_temp_harvester"
tmuxp_yaml_file = "subdoler_temp.yaml"
sublist3r_output_file = "subdoler_temp_sublist3r"