mirror of
https://github.com/MISP/misp-galaxy.git
synced 2024-11-26 16:57:18 +00:00
Update create_mitre-enterprise-attack-course-of-action_galaxy.py
This commit is contained in:
parent
a600aae010
commit
165c33410d
1 changed files with 7 additions and 7 deletions
|
@ -6,7 +6,7 @@ import re
|
||||||
import os
|
import os
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
parser = argparse.ArgumentParser(description='Create a couple galaxy/cluster with cti\'s courses-of-action.\nMust be in the mitre/cti/entreprise-attack/course-of-action folder')
|
parser = argparse.ArgumentParser(description='Create a couple galaxy/cluster with cti\'s courses-of-action.\nMust be in the mitre/cti/enterprise-attack/course-of-action folder')
|
||||||
parser.add_argument("-v", "--version", type=int, required=True, help="Version of the galaxy. Please increment the previous one")
|
parser.add_argument("-v", "--version", type=int, required=True, help="Version of the galaxy. Please increment the previous one")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
@ -27,16 +27,16 @@ for element in os.listdir('.'):
|
||||||
values.append(value)
|
values.append(value)
|
||||||
|
|
||||||
galaxy = {}
|
galaxy = {}
|
||||||
galaxy['name'] = "Entreprise Attack - Course of Action"
|
galaxy['name'] = "Enterprise Attack - Course of Action"
|
||||||
galaxy['type'] = "mitre-entreprise-attack-course-of-action"
|
galaxy['type'] = "mitre-enterprise-attack-course-of-action"
|
||||||
galaxy['description'] = "ATT&CK Mitigation"
|
galaxy['description'] = "ATT&CK Mitigation"
|
||||||
galaxy['uuid' ] = "fb5a36c0-1707-11e8-81f5-d732b22a4982"
|
galaxy['uuid' ] = "fb5a36c0-1707-11e8-81f5-d732b22a4982"
|
||||||
galaxy['version'] = args.version
|
galaxy['version'] = args.version
|
||||||
galaxy['icon'] = "chain"
|
galaxy['icon'] = "chain"
|
||||||
|
|
||||||
cluster = {}
|
cluster = {}
|
||||||
cluster['name'] = "Entreprise Attack - Course of Action"
|
cluster['name'] = "Enterprise Attack - Course of Action"
|
||||||
cluster['type'] = "mitre-entreprise-attack-course-of-action"
|
cluster['type'] = "mitre-enterprise-attack-course-of-action"
|
||||||
cluster['description'] = "ATT&CK Mitigation"
|
cluster['description'] = "ATT&CK Mitigation"
|
||||||
cluster['version'] = args.version
|
cluster['version'] = args.version
|
||||||
cluster['source'] = "https://github.com/mitre/cti"
|
cluster['source'] = "https://github.com/mitre/cti"
|
||||||
|
@ -44,8 +44,8 @@ cluster['uuid' ] = "fb870a6a-1707-11e8-b548-17523e4d0670"
|
||||||
cluster['authors'] = ["MITRE"]
|
cluster['authors'] = ["MITRE"]
|
||||||
cluster['values'] = values
|
cluster['values'] = values
|
||||||
|
|
||||||
with open('generate/galaxies/mitre-entreprise-attack-course-of-action.json', 'w') as galaxy_file:
|
with open('generate/galaxies/mitre-enterprise-attack-course-of-action.json', 'w') as galaxy_file:
|
||||||
json.dump(galaxy, galaxy_file, indent=4)
|
json.dump(galaxy, galaxy_file, indent=4)
|
||||||
|
|
||||||
with open('generate/clusters/mitre-entreprise-attack-course-of-action.json', 'w') as cluster_file:
|
with open('generate/clusters/mitre-enterprise-attack-course-of-action.json', 'w') as cluster_file:
|
||||||
json.dump(cluster, cluster_file, indent=4)
|
json.dump(cluster, cluster_file, indent=4)
|
||||||
|
|
Loading…
Reference in a new issue