Skip to content

Commit

Permalink
Fixed subbrute bug on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aboul3la committed Jun 12, 2016
1 parent c10a20c commit bd114d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subbrute/subbrute.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,8 @@ def run(target, record_type = None, subdomains = "names.txt", resolve_list = "re
resolve_list = check_open(resolve_list)
if (len(resolve_list) / 16) < process_count:
sys.stderr.write('Warning: Fewer than 16 resovlers per thread, consider adding more nameservers to resolvers.txt.\n')
wildcards = multiprocessing.Manager().dict()
spider_blacklist = multiprocessing.Manager().dict()
wildcards = {}
spider_blacklist = {}
in_q = multiprocessing.Queue()
out_q = multiprocessing.Queue()
#have a buffer of at most two new nameservers that lookup processes can draw from.
Expand Down

0 comments on commit bd114d7

Please sign in to comment.