From 8c076145d87e9633fb53f3636dde71013f3706f4 Mon Sep 17 00:00:00 2001 From: chrisr3d Date: Wed, 21 Nov 2018 14:37:45 +0100 Subject: [PATCH] fix: Removed duplicate input type --- misp_modules/modules/expansion/crowdstrike_falcon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misp_modules/modules/expansion/crowdstrike_falcon.py b/misp_modules/modules/expansion/crowdstrike_falcon.py index 84f4c6a..8ed3311 100755 --- a/misp_modules/modules/expansion/crowdstrike_falcon.py +++ b/misp_modules/modules/expansion/crowdstrike_falcon.py @@ -10,7 +10,7 @@ misperrors = {'error': 'Error'} misp_types_in = ['domain', 'domain|ip', 'email-attachment', 'email-dst', 'email-reply-to', 'email-src', 'email-subject', 'filename', 'hostname', 'ip-src', 'ip-dst', 'md5', 'mutex', 'regkey', 'sha1', 'sha256', 'ip-src|port', 'ip-dst|port', 'uri', 'url', 'user-agent', 'whois-registrant-email', 'x509-fingerprint-md5', - 'hostname', 'hostname|port'] + 'hostname|port'] mapping_out = { # mapping between the MISP attributes types and the compatible CrowdStrike indicator types. 'domain': {'types': 'hostname', 'to_ids': True}, 'email_address': {'types': 'email-src', 'to_ids': True},