参数优化

This commit is contained in:
Jing Ling
2020-11-10 13:31:17 +08:00
parent 504a9c88e8
commit 926a3955f6
2 changed files with 8 additions and 10 deletions
+2 -2
View File
@@ -56,13 +56,13 @@ brute_process_num = 1 # 默认1
brute_concurrent_num = 2000 # 并发查询数量(默认2000,最大推荐10000)
brute_socket_num = 1 # 爆破时每个进程下的socket数量
brute_resolve_num = 15 # 解析失败时尝试换名称服务器重查次数
# 爆破所使用的字典路径 默认data/subdomains.txt
# 爆破所使用的字典路径 自定义字典请使用绝对路径
brute_wordlist_path = data_storage_dir.joinpath('subnames.txt')
# 域名的权威DNS名称服务器的保存路径 当域名开启了泛解析时会使用该名称服务器来进行A记录查询
authoritative_dns_path = data_storage_dir.joinpath('authoritative_dns.txt')
enable_recursive_brute = False # 是否使用递归爆破(默认False)
brute_recursive_depth = 2 # 递归爆破深度(默认2层)
# 爆破下一层子域所使用的字典路径 默认data/subnames_next.txt
# 爆破下一层子域所使用的字典路径 自定义字典请使用绝对路径
recursive_nextlist_path = data_storage_dir.joinpath('subnames_next.txt')
enable_check_dict = False # 是否开启字典配置检查提示(默认False)
delete_generated_dict = True # 是否删除爆破时临时生成的字典(默认True)