1.修改默认情况下获取进程数和协程数方式

2.更新依赖
This commit is contained in:
Jing Ling
2020-03-12 21:30:44 +08:00
parent 598f91c6f7
commit 6431ede868
7 changed files with 74 additions and 19 deletions
+2 -2
View File
@@ -184,8 +184,8 @@ class AIOBrute(Module):
self.module = 'Brute'
self.source = 'AIOBrute'
self.target = target
self.process = process or config.brute_process_num
self.coroutine = coroutine or config.brute_coroutine_num
self.process = process or utils.get_process_num()
self.coroutine = coroutine or utils.get_coroutine_num()
self.wordlist = wordlist or config.brute_wordlist_path
self.recursive_brute = recursive or config.enable_recursive_brute
self.recursive_depth = depth or config.brute_recursive_depth