Removed unused variables & imports.
This commit is contained in:
parent
cab552215e
commit
0f714a9d09
|
@ -20,7 +20,6 @@ import socket
|
||||||
import functools
|
import functools
|
||||||
from subbrute import subbrute
|
from subbrute import subbrute
|
||||||
from collections import Counter
|
from collections import Counter
|
||||||
from Queue import Queue
|
|
||||||
|
|
||||||
#In case you cannot install some of the required development packages, there's also an option to disable the SSL warning:
|
#In case you cannot install some of the required development packages, there's also an option to disable the SSL warning:
|
||||||
try:
|
try:
|
||||||
|
@ -196,7 +195,6 @@ class enumratorBase(object):
|
||||||
flag = True
|
flag = True
|
||||||
page_no = 0
|
page_no = 0
|
||||||
prev_links = []
|
prev_links = []
|
||||||
prev_subdomains = []
|
|
||||||
retries = 0
|
retries = 0
|
||||||
|
|
||||||
while flag:
|
while flag:
|
||||||
|
@ -1008,9 +1006,6 @@ def main():
|
||||||
threads = args.threads
|
threads = args.threads
|
||||||
savefile = args.output
|
savefile = args.output
|
||||||
ports = args.ports
|
ports = args.ports
|
||||||
google_list = []
|
|
||||||
bing_list = []
|
|
||||||
baidu_list = []
|
|
||||||
bruteforce_list = set()
|
bruteforce_list = set()
|
||||||
search_list = set()
|
search_list = set()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue