2017-08-16 11:22:20 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
import re
import os
2017-08-17 15:52:26 +02:00
import argparse
2017-08-16 11:22:20 +02:00
2017-08-17 15:52:26 +02:00
parser = argparse . ArgumentParser ( description = ' Create a couple galaxy/cluster with cti \' s courses-of-action. \n Must be in the mitre/cti/ATTACK/course-of-action folder ' )
parser . add_argument ( " -v " , " --version " , type = int , required = True , help = " Version of the galaxy. Please increment the previous one " )
args = parser . parse_args ( )
2017-08-16 11:22:20 +02:00
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 [ ' value ' ] = temp [ ' name ' ]
2017-08-16 15:13:18 +02:00
value [ ' meta ' ] = { }
value [ ' meta ' ] [ ' uuid ' ] = re . search ( ' --(.*)$ ' , temp [ ' id ' ] ) . group ( 0 ) [ 2 : ]
2017-08-16 11:22:20 +02:00
values . append ( value )
galaxy = { }
galaxy [ ' name ' ] = " Course of Action "
2017-08-17 15:52:26 +02:00
galaxy [ ' type ' ] = " mitre-course-of-action "
2017-08-16 11:22:20 +02:00
galaxy [ ' description ' ] = " ATT&CK Mitigation "
galaxy [ ' uuid ' ] = " 6fcb4472-6de4-11e7-b5f7-37771619e14e "
2017-08-17 15:52:26 +02:00
galaxy [ ' version ' ] = args . version
2017-08-16 11:22:20 +02:00
cluster = { }
cluster [ ' name ' ] = " Course of Action "
2017-08-17 15:52:26 +02:00
cluster [ ' type ' ] = " mitre-course-of-action "
2017-08-16 11:22:20 +02:00
cluster [ ' description ' ] = " ATT&CK Mitigation "
2017-08-17 15:52:26 +02:00
cluster [ ' version ' ] = args . version
2017-08-16 11:22:20 +02:00
cluster [ ' source ' ] = " https://github.com/mitre/cti "
cluster [ ' uuid ' ] = " a8825ae8-6dea-11e7-8d57-7728f3cfe086 "
cluster [ ' authors ' ] = [ " MITRE " ]
cluster [ ' values ' ] = values
with open ( ' generate/galaxies/mitre_course-of-action.json ' , ' w ' ) as galaxy_file :
json . dump ( galaxy , galaxy_file , indent = 4 )
with open ( ' generate/clusters/mitre_course-of-action.json ' , ' w ' ) as cluster_file :
json . dump ( cluster , cluster_file , indent = 4 )