mirror of
https://github.com/evilhero/mylar
synced 2025-03-08 21:03:36 +00:00
FIX: NMA was not verifying against connection
This commit is contained in:
parent
5f3b76ea67
commit
704ef85dec
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue