#!/usr/bin/env python # -*- coding: utf-8 -*- import json import re import os ''' Create a couple galaxy/cluster with cti's intrusion-sets Must be in the mitre/cti/ATTACK/intrusion-set folder ''' values = [] for element in os.listdir('.'): if element.endswith('.json'): with open(element) as json_data: d = json.load(json_data) json_data.close() temp = d['objects'][0] value = {} value['description'] = temp['description'] value['uuid'] = re.search('--(.*)$', temp['id']).group(0)[2:] value['name'] = temp['name'] value['meta'] = {} value['meta']['synonyms'] = temp['aliases'] value['meta']['refs']= [] for reference in temp['external_references']: if 'url' in reference: value['meta']['refs'].append(reference['url']) values.append(value) galaxy = {} galaxy['name'] = "Intrusion Set" galaxy['type'] = "course-of-action" galaxy['description'] = "Name of ATT&CK Group" galaxy['uuid' ] = "1023f364-7831-11e7-8318-43b5531983ab" galaxy['version'] = "1" cluster = {} cluster['name'] = "intrusion Set" cluster['type'] = "intrusion-set" cluster['description'] = "Name of ATT&CK Group" cluster['version'] = "1" cluster['source'] = "https://github.com/mitre/cti" cluster['uuid' ] = "10df003c-7831-11e7-bdb9-971cdd1218df" cluster['authors'] = ["MITRE"] cluster['values'] = values with open('generate/galaxies/mitre_intrusion-set.json', 'w') as galaxy_file: json.dump(galaxy, galaxy_file, indent=4) with open('generate/clusters/mitre_intrusion-set.json', 'w') as cluster_file: json.dump(cluster, cluster_file, indent=4)