From 58e926a149c094298eaaba24f727f6868d1e8e15 Mon Sep 17 00:00:00 2001 From: Jing Ling Date: Sun, 26 Apr 2020 02:26:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E5=AE=89=E5=85=A8=E5=9C=B0=E6=89=A7?= =?UTF-8?q?=E8=A1=8Cmassdns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oneforall/common/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oneforall/common/utils.py b/oneforall/common/utils.py index eb61890..2c299f9 100644 --- a/oneforall/common/utils.py +++ b/oneforall/common/utils.py @@ -515,8 +515,8 @@ def call_massdns(massdns_path, dict_path, ns_path, output_path, log_path, f'--processes {process_num} --socket-count {socket_num} ' \ f'--hashmap-size {concurrent_num} --resolvers {ns_path} ' \ f'--resolve-count {resolve_num} --type {query_type} ' \ - f'--flush --output J --outfile {output_path} ' \ - f'--error-log {log_path} {dict_path}' + f'--flush --output J --outfile {output_path} --drop-group ' \ + f'--drop-user --error-log {log_path} {dict_path}' logger.log('INFOR', f'执行命令 {cmd}') subprocess.run(args=cmd, shell=True) logger.log('INFOR', f'结束执行massdns')