Commit 1ad05c3b by fwkz

Disabling requests' InsecureRequestWarning globally.

parent b2736557
...@@ -28,6 +28,9 @@ colors = { ...@@ -28,6 +28,9 @@ colors = {
'cyan': 36, 'white': 37, 'cyan': 36, 'white': 37,
} }
# Disable certificate verification warnings
requests.packages.urllib3.disable_warnings(requests.packages.urllib3.exceptions.InsecureRequestWarning)
def index_modules(modules_directory=MODULES_DIR): def index_modules(modules_directory=MODULES_DIR):
""" Return list of all exploits modules """ """ Return list of all exploits modules """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment