From 84d1693261b378771013bd0c865e7c610db34bf2 Mon Sep 17 00:00:00 2001 From: Hannah Ward Date: Fri, 12 May 2017 22:15:40 +0100 Subject: [PATCH] fix: Allow not checking SSL stuffs --- misp_taxii_hooks/hooks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/misp_taxii_hooks/hooks.py b/misp_taxii_hooks/hooks.py index 1da872b..3f45221 100644 --- a/misp_taxii_hooks/hooks.py +++ b/misp_taxii_hooks/hooks.py @@ -40,6 +40,7 @@ else: MISP = pymisp.PyMISP( CONFIG["misp"]["url"], CONFIG["misp"]["api"], + ssl = config["misp"].get("verifySSL", True) ) def post_stix(manager, content_block, collection_ids, service_id):