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
2018-03-22 14:16:06 +01: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 15:52:26 +02: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 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 ' ]
2018-04-03 15:53:17 +02:00
value [ ' value ' ] = temp [ ' name ' ] + ' - ' + temp [ ' external_references ' ] [ 0 ] [ ' external_id ' ]
2018-02-21 16:28:11 +01:00
value [ ' uuid ' ] = re . search ( ' --(.*)$ ' , temp [ ' id ' ] ) . group ( 0 ) [ 2 : ]
2018-05-18 16:15:26 +02:00
value [ ' meta ' ] = { }
value [ ' meta ' ] [ ' external_id ' ] = temp [ ' external_references ' ] [ 0 ] [ ' external_id ' ]
2017-08-16 11:22:20 +02:00
values . append ( value )
galaxy = { }
2018-03-22 14:16:06 +01:00
galaxy [ ' name ' ] = " Enterprise Attack - Course of Action "
galaxy [ ' type ' ] = " mitre-enterprise-attack-course-of-action "
2017-08-16 11:22:20 +02:00
galaxy [ ' description ' ] = " ATT&CK Mitigation "
2018-02-21 16:28:11 +01:00
galaxy [ ' uuid ' ] = " fb5a36c0-1707-11e8-81f5-d732b22a4982 "
2017-08-17 15:52:26 +02:00
galaxy [ ' version ' ] = args . version
2017-10-26 10:28:05 +02:00
galaxy [ ' icon ' ] = " chain "
2018-05-20 09:36:35 +02:00
galaxy [ ' namespace ' ] = " mitre-attack "
2017-08-16 11:22:20 +02:00
2018-04-03 15:53:17 +02:00
cluster = { }
2018-03-22 14:16:06 +01:00
cluster [ ' name ' ] = " Enterprise Attack - Course of Action "
cluster [ ' type ' ] = " mitre-enterprise-attack-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 "
2018-02-21 16:28:11 +01:00
cluster [ ' uuid ' ] = " fb870a6a-1707-11e8-b548-17523e4d0670 "
2017-08-16 11:22:20 +02:00
cluster [ ' authors ' ] = [ " MITRE " ]
cluster [ ' values ' ] = values
2018-03-22 14:16:06 +01:00
with open ( ' generate/galaxies/mitre-enterprise-attack-course-of-action.json ' , ' w ' ) as galaxy_file :
2017-08-16 11:22:20 +02:00
json . dump ( galaxy , galaxy_file , indent = 4 )
2018-03-22 14:16:06 +01:00
with open ( ' generate/clusters/mitre-enterprise-attack-course-of-action.json ' , ' w ' ) as cluster_file :
2017-08-16 11:22:20 +02:00
json . dump ( cluster , cluster_file , indent = 4 )