Skip to content

Commit

Permalink
Fixed Sublist3r v1.0 on Windows Platform
Browse files Browse the repository at this point in the history
  • Loading branch information
aboul3la committed Jul 5, 2016
1 parent 8a09362 commit fbaf7e8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sublist3r.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# coding: utf-8
# SubList3r v0.1
# Sublist3r v1.0
# By Ahmed Aboul-Ela - twitter.com/aboul3la

import re
Expand Down Expand Up @@ -886,7 +886,11 @@ def main():
baidu_list = []
bruteforce_list = set()
search_list = set()
subdomains_queue = multiprocessing.Manager().list()

if is_windows:
subdomains_queue = list()
else:
subdomains_queue = multiprocessing.Manager().list()

#Check Verbosity
global verbose
Expand Down

0 comments on commit fbaf7e8

Please sign in to comment.