From 32b06362bd54573b5ff8c6f0eea010fa7e5be757 Mon Sep 17 00:00:00 2001 From: shmilylty Date: Sun, 18 Aug 2019 19:26:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=BB=98=E8=AE=A4=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E8=B6=85=E6=97=B6=E4=B8=BA30=E7=A7=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oneforall/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oneforall/config.py b/oneforall/config.py index 2551c8e..7d6bcd7 100644 --- a/oneforall/config.py +++ b/oneforall/config.py @@ -31,7 +31,7 @@ enable_wildcard_check = True # 开启泛解析检测 会去掉泛解析的子 brute_process_num = os.cpu_count() brute_coroutine_num = 128 # 爆破时每个进程下的协程数(不宜大于1000) # 爆破所使用的字典路径 默认data/subdomains.txt -brute_wordlist_path = data_storage_path.joinpath('subdomains.txt') +brute_wordlist_path = data_storage_path.joinpath('subnames.txt') brute_task_segment = 500 # 参数segment的设置受CPU性能,网络带宽,运营商限制等限制,默认500个子域为一任务组, # 当你觉得你的环境不受以上因素影响,当前爆破速度较慢,那么强烈建议根据字典大小调整大小: @@ -39,7 +39,7 @@ brute_task_segment = 500 enable_recursive_brute = False # 是否使用递归爆破(默认禁用) brute_recursive_depth = 2 # 递归爆破深度(默认2层) # 爆破下一层子域所使用的字典路径 默认data/next_subdomains.txt -recursive_namelist_path = data_storage_path.joinpath('next_subdomains.txt') +recursive_namelist_path = data_storage_path.joinpath('next_subnames.txt') enable_fuzz = False # 是否使用fuzz模式枚举域名 fuzz_rule = '' # fuzz域名的正则 示例:[a-z][0-9] 第一位是字母 第二位是数字 ips_appear_maximum = 10 # 同一IP集合出现次数超过10认为是泛解析 @@ -60,7 +60,7 @@ proxy_pool = [{'http': 'http://127.0.0.1:1080', # 网络请求设置 enable_fake_header = True # 启用伪造请求头 request_delay = 1 # 请求时延 -request_timeout = 60 # 请求超时 +request_timeout = 30 # 请求超时 request_verify = True # 请求SSL验证 # 搜索模块设置