From 9f5d4d920fdbf03e95f29f80156a309e24d624fa Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 7 Sep 2017 13:41:28 +0200 Subject: [PATCH] Remove workaround for InsecureRequestWarning Fixes #14 > from requests.packages.urllib3.exceptions import InsecureRequestWarning This used to avoid telling the user that they were using an insecure version of Python. This workaround is not longer supported because it is not good to ignore that the platform is insecure. Repeated warnings will push people to upgrade to a secure version of Python. https://stackoverflow.com/questions/27981545/suppress-insecurerequestwarning-unverified-https-request-is-being-made-in-pytho --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index 614cdae..bd1e0d9 100644 --- a/main.py +++ b/main.py @@ -8,7 +8,6 @@ from engine.wordpress import * from engine.scan import * from engine.fuzz import * from engine.brute import * -from requests.packages.urllib3.exceptions import InsecureRequestWarning if __name__ == "__main__":