Updated to the latest version of the MISP galaxy
parent
0bf4e2b566
commit
cfc094f7a0
|
@ -2,8 +2,8 @@ import json
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
debug = False
|
debug = False
|
||||||
galaxy_url = 'https://raw.githubusercontent.com/MISP/misp-galaxy/master/elements/'
|
galaxy_url = 'https://raw.githubusercontent.com/MISP/misp-galaxy/master/clusters/'
|
||||||
elements = ['threat-actor-tools.json', 'adversary-groups.json']
|
elements = ['tools.json', 'threat-actors.json']
|
||||||
# elements = ['threat-actor-tools.json']
|
# elements = ['threat-actor-tools.json']
|
||||||
|
|
||||||
taxonomy = {}
|
taxonomy = {}
|
||||||
|
@ -48,7 +48,7 @@ for element in elements:
|
||||||
taxonomy['values'].append(t_value)
|
taxonomy['values'].append(t_value)
|
||||||
|
|
||||||
file_out = '../../misp-galaxy/machinetag.json'
|
file_out = '../../misp-galaxy/machinetag.json'
|
||||||
with open(file_out, 'w') as f:
|
with open(file_out, 'w') as f:
|
||||||
f.write(json.dumps(taxonomy, sort_keys=True, indent=4, separators=(',', ': ')))
|
f.write(json.dumps(taxonomy, sort_keys=True, indent=4, separators=(',', ': ')))
|
||||||
print("JSON saved to "+ file_out)
|
print("JSON saved to "+ file_out)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue