Skip to content
This repository was archived by the owner on Aug 12, 2019. It is now read-only.

Commit 441b900

Browse files
committed
Now ignoring SSL certificate validation based on the Manager dunder init arguments
1 parent e420955 commit 441b900

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
-3.73 MB
Binary file not shown.

deepsecurity/manager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,13 @@ def _make_a_rest_call(self, call):
237237
if call.has_key('query') and call['query'] and not call.has_key('data'):
238238
# GET
239239
try:
240-
result = requests.get(full_url, headers=headers)
240+
result = requests.get(full_url, headers=headers, verify=not self.ignore_ssl_validation)
241241
except Exception, get_err:
242242
self.log("Failed to get REST call [%s] with query string. Threw exception: /%s" % (call['method'].lstrip('/'), post_err))
243243
elif call.has_key('data') and call['data']:
244244
# POST
245245
try:
246-
result = requests.post(full_url, data=json.dumps(call['data']), headers=headers)
246+
result = requests.post(full_url, data=json.dumps(call['data']), headers=headers, verify=not self.ignore_ssl_validation)
247247
except Exception, post_err:
248248
self.log("Failed to post REST call [%s]. Threw exception: /%s" % (call['method'].lstrip('/'), post_err))
249249
else:

0 commit comments

Comments
 (0)