mirror of https://github.com/MISP/misp-galaxy
				
				
				
			
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
#!/usr/bin/env python
 | 
						|
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
import json
 | 
						|
import re
 | 
						|
import os
 | 
						|
import argparse
 | 
						|
 | 
						|
parser = argparse.ArgumentParser(description='Create a couple galaxy/cluster with cti\'s malwares\nMust be in the mitre/cti/mobile-attack/malware folder')
 | 
						|
parser.add_argument("-v", "--version", type=int, required=True, help="Version of the galaxy. Please increment the previous one")
 | 
						|
args = parser.parse_args()
 | 
						|
 | 
						|
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'] + ' - ' + temp['external_references'][0]['external_id']
 | 
						|
            value['meta'] = {}
 | 
						|
            value['meta']['refs'] = []
 | 
						|
            for reference in temp['external_references']:
 | 
						|
                if 'url' in reference and reference['url'] not in value['meta']['refs']:
 | 
						|
                    value['meta']['refs'].append(reference['url'])
 | 
						|
                if 'external_id' in reference:
 | 
						|
                    value['meta']['external_id'] = reference['external_id']                      
 | 
						|
            if'x_mitre_aliases' in temp:
 | 
						|
                value['meta']['synonyms'] = temp['x_mitre_aliases']
 | 
						|
            value['uuid'] = re.search('--(.*)$', temp['id']).group(0)[2:]
 | 
						|
            values.append(value)
 | 
						|
 | 
						|
galaxy = {}
 | 
						|
galaxy['name'] = "Mobile Attack - Malware"
 | 
						|
galaxy['type'] = "mitre-mobile-attack-malware"
 | 
						|
galaxy['description'] = "Name of ATT&CK software"
 | 
						|
galaxy['uuid' ] = "03e3853a-1708-11e8-95c1-67cf3f801a18"
 | 
						|
galaxy['version'] = args.version
 | 
						|
galaxy['icon'] = "optin-monster"
 | 
						|
galaxy['namespace'] = "mitre-attack"
 | 
						|
 | 
						|
cluster = {}
 | 
						|
cluster['name'] = "Mobile Attack - Malware"
 | 
						|
cluster['type'] = "mitre-mobile-attack-malware"
 | 
						|
cluster['description'] = "Name of ATT&CK software"
 | 
						|
cluster['version'] = args.version
 | 
						|
cluster['source'] = "https://github.com/mitre/cti"
 | 
						|
cluster['uuid' ] = "04a165aa-1708-11e8-b2da-c7d7625f4a4f"
 | 
						|
cluster['authors'] = ["MITRE"]
 | 
						|
cluster['values'] = values
 | 
						|
 | 
						|
with open('generate/galaxies/mitre-mobile-attack-malware.json', 'w') as galaxy_file:
 | 
						|
    json.dump(galaxy, galaxy_file, indent=4)
 | 
						|
 | 
						|
with open('generate/clusters/mitre-mobile-attack-malware.json', 'w') as cluster_file:
 | 
						|
    json.dump(cluster, cluster_file, indent=4)
 |