chg: [mitre-d3fend] PyMISPGalaxies and sorting

This commit is contained in:
Christophe Vandeplas 2024-06-25 14:51:29 +02:00
parent 1128f9ffe7
commit b00d7edaad
No known key found for this signature in database
GPG key ID: BDC48619FFDC5A5B
3 changed files with 23775 additions and 23745 deletions

61
.vscode/launch.json vendored
View file

@ -5,46 +5,73 @@
"name": "gen_gsma_motif", "name": "gen_gsma_motif",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${file}", "program": "gen_gsma_motif.py",
"console": "integratedTerminal", "console": "integratedTerminal",
"args": "", "args": "",
"cwd": "${fileDirname}" "cwd": "${workspaceFolder}/tools"
}, },
{ {
"name": "gen_mitre_d3fend", "name": "gen_mitre_d3fend",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${file}", "program": "gen_mitre_d3fend.py",
"console": "integratedTerminal", "console": "integratedTerminal",
"args": "", "args": "",
"cwd": "${fileDirname}" "cwd": "${workspaceFolder}/tools"
},
{
"name": "gen_mitre_fight",
"type": "debugpy",
"request": "launch",
"program": "gen_mitre_fight.py",
"console": "integratedTerminal",
"args": "",
"cwd": "${workspaceFolder}/tools"
}, },
{ {
"name": "gen_mitre", "name": "gen_mitre",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${file}", "program": "gen_mitre.py",
"console": "integratedTerminal", "console": "integratedTerminal",
"args": "-p ../../MITRE-ATTACK", "args": "-p ../../MITRE-ATTACK",
"cwd": "${fileDirname}" "cwd": "${workspaceFolder}/tools"
},
{
"name": "gen_interpol_dwvat",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": "-p ../../DW-VA-Taxonomy",
"cwd": "${fileDirname}"
}, },
{ {
"name": "gen_mitre_atlas", "name": "gen_mitre_atlas",
"type": "debugpy", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${file}", "program": "gen_mitre_atlas.py",
"console": "integratedTerminal", "console": "integratedTerminal",
"args": "-p ../../atlas-navigator-data", "args": "-p ../../atlas-navigator-data",
"cwd": "${fileDirname}" "cwd": "${workspaceFolder}/tools"
},
{
"name": "gen_ms_tmss",
"type": "debugpy",
"request": "launch",
"program": "gen_ms_tmss.py",
"console": "integratedTerminal",
"args": "-p ../../Threat-matrix-for-storage-services",
"cwd": "${workspaceFolder}/tools"
},
{
"name": "gen_ms_atrm",
"type": "debugpy",
"request": "launch",
"program": "gen_ms_atrm.py",
"console": "integratedTerminal",
"args": "-p ../../Azure-Threat-Research-Matrix",
"cwd": "${workspaceFolder}/tools"
},
{
"name": "gen_interpol_dwvat",
"type": "debugpy",
"request": "launch",
"program": "gen_interpol_dwvat.py",
"console": "integratedTerminal",
"args": "-p ../../DW-VA-Taxonomy",
"cwd": "${workspaceFolder}/tools"
}, },
{ {
"name": "Python Debugger: Current File", "name": "Python Debugger: Current File",

File diff suppressed because it is too large Load diff

View file

@ -17,14 +17,22 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import json
import os
import requests import requests
import uuid import uuid
from pymispgalaxies import Cluster, Galaxy
d3fend_url = 'https://d3fend.mitre.org/ontologies/d3fend.json' d3fend_url = 'https://d3fend.mitre.org/ontologies/d3fend.json'
d3fend_full_mappings_url = 'https://d3fend.mitre.org/api/ontology/inference/d3fend-full-mappings.json' d3fend_full_mappings_url = 'https://d3fend.mitre.org/api/ontology/inference/d3fend-full-mappings.json'
galaxy_fname = 'mitre-d3fend.json'
galaxy_type = "mitre-d3fend"
galaxy_name = "MITRE D3FEND"
galaxy_description = 'A knowledge graph of cybersecurity countermeasures.'
galaxy_source = 'https://d3fend.mitre.org/'
# we love eating lots of memory # we love eating lots of memory
r = requests.get(d3fend_url) r = requests.get(d3fend_url)
d3fend_json = r.json() d3fend_json = r.json()
@ -32,9 +40,6 @@ d3fend_json = r.json()
r = requests.get(d3fend_full_mappings_url) r = requests.get(d3fend_full_mappings_url)
d3fend_mappings_json = r.json() d3fend_mappings_json = r.json()
with open('../clusters/mitre-attack-pattern.json', 'r') as mitre_f:
mitre = json.load(mitre_f)
uuid_seed = '35527064-12b4-4b73-952b-6d76b9f1b1e3' uuid_seed = '35527064-12b4-4b73-952b-6d76b9f1b1e3'
@ -123,14 +128,31 @@ def find_kill_chain_of(original_item):
return find_kill_chain_of(data[parent_class]) return find_kill_chain_of(data[parent_class])
mitre_attack_pattern = Cluster('mitre-attack-pattern')
def find_mitre_uuid_from_technique_id(technique_id): def find_mitre_uuid_from_technique_id(technique_id):
for item in mitre['values']: try:
if item['meta']['external_id'] == technique_id: return mitre_attack_pattern.get_by_external_id(technique_id).uuid
return item['uuid'] except KeyError:
print("No MITRE UUID found for technique_id: ", technique_id) print("No MITRE UUID found for technique_id: ", technique_id)
return None return None
try:
cluster = Cluster('mitre-d3fend')
except (KeyError, FileNotFoundError):
cluster = Cluster({
'authors': ["MITRE"],
'category': 'd3fend',
'name': galaxy_name,
'description': galaxy_description,
'source': galaxy_source,
'type': galaxy_type,
'uuid': "b8bd7e45-63bf-4c44-8ab1-c81c82547380",
'version': 0
})
# relationships # relationships
for item in d3fend_mappings_json['results']['bindings']: for item in d3fend_mappings_json['results']['bindings']:
d3fend_technique = item['def_tech_label']['value'] d3fend_technique = item['def_tech_label']['value']
@ -213,16 +235,18 @@ while seen_new:
if item['rdfs:label'] in relations: if item['rdfs:label'] in relations:
technique['related'] = relations[item['rdfs:label']] technique['related'] = relations[item['rdfs:label']]
techniques.append(technique) cluster.append(technique)
print(f"Technique: {item['rdfs:label']} - {item['d3f:d3fend-id']}") print(f"Technique: {item['rdfs:label']} - {item['d3f:d3fend-id']}")
galaxy_fname = 'mitre-d3fend.json' cluster.save('mitre-d3fend')
galaxy_type = "mitre-d3fend"
galaxy_name = "MITRE D3FEND"
galaxy_description = 'A knowledge graph of cybersecurity countermeasures.' try:
galaxy_source = 'https://d3fend.mitre.org/' galaxy = Galaxy('mitre-d3fend')
json_galaxy = { galaxy.kill_chain_order = kill_chain_tactics
except (KeyError, FileNotFoundError):
galaxy = Galaxy({
'description': galaxy_description, 'description': galaxy_description,
'icon': "user-shield", 'icon': "user-shield",
'kill_chain_order': kill_chain_tactics, 'kill_chain_order': kill_chain_tactics,
@ -231,29 +255,8 @@ json_galaxy = {
'type': galaxy_type, 'type': galaxy_type,
'uuid': "77d1bbfa-2982-4e0a-9238-1dae4a48c5b4", 'uuid': "77d1bbfa-2982-4e0a-9238-1dae4a48c5b4",
'version': 1 'version': 1
} })
json_cluster = { galaxy.save('mitre-d3fend')
'authors': ["MITRE"],
'category': 'd3fend',
'name': galaxy_name,
'description': galaxy_description,
'source': galaxy_source,
'type': galaxy_type,
'uuid': "b8bd7e45-63bf-4c44-8ab1-c81c82547380",
'values': list(techniques),
'version': 1
}
# save the Galaxy and Cluster file
with open(os.path.join('..', 'galaxies', galaxy_fname), 'w') as f:
# sort_keys, even if it breaks the kill_chain_order , but jq_all_the_things requires sorted keys
json.dump(json_galaxy, f, indent=2, sort_keys=True, ensure_ascii=False)
f.write('\n') # only needed for the beauty and to be compliant with jq_all_the_things
with open(os.path.join('..', 'clusters', galaxy_fname), 'w') as f:
json.dump(json_cluster, f, indent=2, sort_keys=True, ensure_ascii=False)
f.write('\n') # only needed for the beauty and to be compliant with jq_all_the_things
print("All done, please don't forget to ./jq_all_the_things.sh, commit, and then ./validate_all.sh.") print("All done, please don't forget to ./jq_all_the_things.sh, commit, and then ./validate_all.sh.")