From bca4b19092375b5c00ed7e962438d3ed87b8c423 Mon Sep 17 00:00:00 2001 From: Med Amine Ben Asker Date: Tue, 15 Dec 2015 19:50:19 +0100 Subject: [PATCH] Fix the SSL warning for those who cannot install some of the required development packages --- sublist3r.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sublist3r.py b/sublist3r.py index 4dbf23c..d23c1ec 100644 --- a/sublist3r.py +++ b/sublist3r.py @@ -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() \ No newline at end of file + main()