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 attack-patterns \n Must be in the mitre/cti/ATTACK/attack-pattern 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 ' ]
2017-08-16 12:32:34 +02:00
value [ ' value ' ] = temp [ ' name ' ]
2017-08-16 11:22:20 +02:00
value [ ' meta ' ] = { }
value [ ' meta ' ] [ ' refs ' ] = [ ]
for reference in temp [ ' external_references ' ] :
if ' url ' in reference :
value [ ' meta ' ] [ ' refs ' ] . append ( reference [ ' url ' ] )
if ' x_mitre_data_sources ' in temp :
2017-10-26 09:44:23 +02:00
value [ ' meta ' ] [ ' mitre_data_sources ' ] = temp [ ' x_mitre_data_sources ' ]
2017-08-16 11:22:20 +02:00
if ' x_mitre_platforms ' in temp :
2017-10-26 09:44:23 +02:00
value [ ' meta ' ] [ ' mitre_platforms ' ] = temp [ ' x_mitre_platforms ' ]
2017-08-16 11:22:20 +02:00
values . append ( value )
2017-08-16 15:13:18 +02:00
value [ ' meta ' ] [ ' uuid ' ] = re . search ( ' --(.*)$ ' , temp [ ' id ' ] ) . group ( 0 ) [ 2 : ]
2017-08-16 11:22:20 +02:00
galaxy = { }
galaxy [ ' name ' ] = " Attack Pattern "
2017-08-17 15:52:26 +02:00
galaxy [ ' type ' ] = " mitre-attack-pattern "
2017-08-16 11:22:20 +02:00
galaxy [ ' description ' ] = " ATT&CK Tactic "
galaxy [ ' uuid ' ] = " c4e851fa-775f-11e7-8163-b774922098cd "
2017-08-17 15:52:26 +02:00
galaxy [ ' version ' ] = args . version
2017-10-26 10:28:05 +02:00
galaxy [ ' icon ' ] = " map "
2017-08-16 11:22:20 +02:00
cluster = { }
cluster [ ' name ' ] = " Attack Pattern "
2017-08-17 15:52:26 +02:00
cluster [ ' type ' ] = " mitre-attack-pattern "
2017-08-16 11:22:20 +02:00
cluster [ ' description ' ] = " ATT&CK tactic "
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 ' ] = " dcb864dc-775f-11e7-9fbb-1f41b4996683 "
cluster [ ' authors ' ] = [ " MITRE " ]
cluster [ ' values ' ] = values
with open ( ' generate/galaxies/mitre_attack-pattern.json ' , ' w ' ) as galaxy_file :
json . dump ( galaxy , galaxy_file , indent = 4 )
with open ( ' generate/clusters/mitre_attack-pattern.json ' , ' w ' ) as cluster_file :
json . dump ( cluster , cluster_file , indent = 4 )