From 3e37cdf845573ab57f9428b78c19dfc32414a362 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Tue, 14 Jan 2020 20:33:48 +0100 Subject: [PATCH] fix: [local] fixes all event to local transforms --- setup.py | 2 +- src/MISP_maltego/transforms/common/util.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index bb6f86c..0d8e6d3 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='MISP_maltego', author='Christophe Vandeplas', # also update version in util.py - version='1.4.2', + version='1.4.3', author_email='christophe@vandeplas.com', maintainer='Christophe Vandeplas', url='https://github.com/MISP/MISP-maltego', diff --git a/src/MISP_maltego/transforms/common/util.py b/src/MISP_maltego/transforms/common/util.py index 0793be6..aac9144 100644 --- a/src/MISP_maltego/transforms/common/util.py +++ b/src/MISP_maltego/transforms/common/util.py @@ -13,7 +13,7 @@ import time # FIXME from galaxy 'to MISP Event' is confusing -__version__ = '1.4.2' # also update version in setup.py +__version__ = '1.4.3' # also update version in setup.py mapping_misp_to_maltego = { 'AS': [AS], @@ -189,7 +189,7 @@ def get_misp_connection(config=None, parameters=None): misp_key = parameters['mispkey'].value except AttributeError: raise MaltegoException("ERROR: mispurl and mispkey need to be set to something valid") - misp_connection = PyMISP(misp_url, misp_key, misp_verify, 'json', misp_debug) + misp_connection = PyMISP(misp_url, misp_key, misp_verify, 'json', misp_debug) except Exception: if is_local_exec_mode(): raise MaltegoException("ERROR: Cannot connect to MISP server. Please verify your MISP_Maltego.conf settings.")