mirror of
https://github.com/shmilylty/OneForAll.git
synced 2026-08-25 20:37:48 +08:00
为爆破线程命名
This commit is contained in:
@@ -37,8 +37,9 @@ class BruteSRV(Module):
|
|||||||
"""
|
"""
|
||||||
self.gen_names()
|
self.gen_names()
|
||||||
|
|
||||||
for i in range(self.thread_num):
|
for num in range(self.thread_num):
|
||||||
thread = BruteThread(self.names_que, self.answers_que)
|
thread = BruteThread(self.names_que, self.answers_que)
|
||||||
|
thread.name = f'BruteThread-{num}'
|
||||||
thread.daemon = True
|
thread.daemon = True
|
||||||
thread.start()
|
thread.start()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user