From 48a65e15a69b5d6936327c20dcca8e2c0292913a Mon Sep 17 00:00:00 2001 From: Deborah Servili Date: Fri, 23 Feb 2018 08:37:15 +0100 Subject: [PATCH] fix empty meta field --- .../create_mitre-enterprise-attack-course-of-action_galaxy.py | 1 - .../v2.0/create_mitre-mobile-attack-course-of-action_galaxy.py | 1 - 2 files changed, 2 deletions(-) diff --git a/tools/mitre-cti/v2.0/create_mitre-enterprise-attack-course-of-action_galaxy.py b/tools/mitre-cti/v2.0/create_mitre-enterprise-attack-course-of-action_galaxy.py index 79da56f..b0e1e10 100644 --- a/tools/mitre-cti/v2.0/create_mitre-enterprise-attack-course-of-action_galaxy.py +++ b/tools/mitre-cti/v2.0/create_mitre-enterprise-attack-course-of-action_galaxy.py @@ -23,7 +23,6 @@ for element in os.listdir('.'): value = {} value['description'] = temp['description'] value['value'] = temp['name'] - value['meta'] = {} value['uuid'] = re.search('--(.*)$', temp['id']).group(0)[2:] values.append(value) diff --git a/tools/mitre-cti/v2.0/create_mitre-mobile-attack-course-of-action_galaxy.py b/tools/mitre-cti/v2.0/create_mitre-mobile-attack-course-of-action_galaxy.py index e3e45ec..7f2d7a0 100644 --- a/tools/mitre-cti/v2.0/create_mitre-mobile-attack-course-of-action_galaxy.py +++ b/tools/mitre-cti/v2.0/create_mitre-mobile-attack-course-of-action_galaxy.py @@ -23,7 +23,6 @@ for element in os.listdir('.'): value = {} value['description'] = temp['description'] value['value'] = temp['name'] - value['meta'] = {} value['uuid'] = re.search('--(.*)$', temp['id']).group(0)[2:] values.append(value)