2017-08-16 09:22:20 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import json
import re
import os
2017-08-17 13:52:26 +00:00
import argparse
2017-08-16 09:22:20 +00:00
2018-03-22 13:16:06 +00:00
parser = argparse . ArgumentParser ( description = ' Create a couple galaxy/cluster with cti \' s courses-of-action. \n Must be in the mitre/cti/enterprise-attack/course-of-action folder ' )
2017-08-17 13:52:26 +00:00
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 09:22:20 +00: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 ' ]
2018-04-03 13:53:17 +00:00
value [ ' value ' ] = temp [ ' name ' ] + ' - ' + temp [ ' external_references ' ] [ 0 ] [ ' external_id ' ]
2018-02-21 15:28:11 +00:00
value [ ' uuid ' ] = re . search ( ' --(.*)$ ' , temp [ ' id ' ] ) . group ( 0 ) [ 2 : ]
2017-08-16 09:22:20 +00:00
values . append ( value )
galaxy = { }
2018-03-22 13:16:06 +00:00
galaxy [ ' name ' ] = " Enterprise Attack - Course of Action "
galaxy [ ' type ' ] = " mitre-enterprise-attack-course-of-action "
2017-08-16 09:22:20 +00:00
galaxy [ ' description ' ] = " ATT&CK Mitigation "
2018-02-21 15:28:11 +00:00
galaxy [ ' uuid ' ] = " fb5a36c0-1707-11e8-81f5-d732b22a4982 "
2017-08-17 13:52:26 +00:00
galaxy [ ' version ' ] = args . version
2017-10-26 08:28:05 +00:00
galaxy [ ' icon ' ] = " chain "
2017-08-16 09:22:20 +00:00
2018-04-03 13:53:17 +00:00
cluster = { }
2018-03-22 13:16:06 +00:00
cluster [ ' name ' ] = " Enterprise Attack - Course of Action "
cluster [ ' type ' ] = " mitre-enterprise-attack-course-of-action "
2017-08-16 09:22:20 +00:00
cluster [ ' description ' ] = " ATT&CK Mitigation "
2017-08-17 13:52:26 +00:00
cluster [ ' version ' ] = args . version
2017-08-16 09:22:20 +00:00
cluster [ ' source ' ] = " https://github.com/mitre/cti "
2018-02-21 15:28:11 +00:00
cluster [ ' uuid ' ] = " fb870a6a-1707-11e8-b548-17523e4d0670 "
2017-08-16 09:22:20 +00:00
cluster [ ' authors ' ] = [ " MITRE " ]
cluster [ ' values ' ] = values
2018-03-22 13:16:06 +00:00
with open ( ' generate/galaxies/mitre-enterprise-attack-course-of-action.json ' , ' w ' ) as galaxy_file :
2017-08-16 09:22:20 +00:00
json . dump ( galaxy , galaxy_file , indent = 4 )
2018-03-22 13:16:06 +00:00
with open ( ' generate/clusters/mitre-enterprise-attack-course-of-action.json ' , ' w ' ) as cluster_file :
2017-08-16 09:22:20 +00:00
json . dump ( cluster , cluster_file , indent = 4 )