FIX: NMA was not verifying against connection

This commit is contained in:
evilhero 2016-05-24 18:45:53 -04:00
parent 5f3b76ea67
commit 704ef85dec
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class NMA:
def _send(self, data, module):
r = self._session.post(self.NMA_URL, data=data)
r = self._session.post(self.NMA_URL, data=data, verify=True)
logger.fdebug('[NMA] Status code returned: ' + str(r.status_code))
if r.status_code == 200: