Merge pull request #1 from yurilaaziz/master

Fix the SSL warning
This commit is contained in:
Ahmed Aboul-Ela 2015-12-16 17:53:13 +02:00
commit 229a6640df
1 changed files with 4 additions and 1 deletions

View File

@ -16,6 +16,9 @@ import dns.resolver
from subbrute import subbrute
from collections import Counter
#In case you cannot install some of the required development packages, there's also an option to disable the SSL warning:
requests.packages.urllib3.disable_warnings()
#Console Colors
G = '\033[92m' #green
Y = '\033[93m' #yellow
@ -692,4 +695,4 @@ def main():
print G+subdomain+W
if __name__=="__main__":
main()
main()