From a4afac9a9775775ab846c5235921c0cf997ba055 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Mon, 27 May 2024 21:57:08 +0200 Subject: [PATCH 1/5] new: [d3fend] initial conversion script for MITRE D3FEND #975 --- tools/gen_mitre_d3fend.py | 211 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100755 tools/gen_mitre_d3fend.py diff --git a/tools/gen_mitre_d3fend.py b/tools/gen_mitre_d3fend.py new file mode 100755 index 0000000..3bb0160 --- /dev/null +++ b/tools/gen_mitre_d3fend.py @@ -0,0 +1,211 @@ +#!/usr/bin/env python3 +import json +import os +import requests +import uuid + +d3fend_url = 'https://d3fend.mitre.org/ontologies/d3fend.json' +d3fend_full_mappings_url = 'https://d3fend.mitre.org/api/ontology/inference/d3fend-full-mappings.json' + + +try: + with open('d3fend.json', 'r') as f: + d3fend_json = json.load(f) +except Exception: + r = requests.get(d3fend_url) + with open('d3fend.json', 'w') as f: + f.write(r.text) + d3fend_json = r.json() + +uuid_seed = '35527064-12b4-4b73-952b-6d76b9f1b1e3' + +tactics = {} # key = tactic, value = phases +phases_ids = [] +techniques_ids = [] +techniques = [] + + +def get_as_list(item): + if isinstance(item, dict): + return item.values() + elif isinstance(item, list): + result = [] + for i in item: + if isinstance(i, dict): + result += i.values() + if isinstance(i, str): + result.append(i) + return result + elif isinstance(item, str): + return [item] + else: + raise ValueError(f'Unexpected type: {type(item)}') + + +def is_val_in_element(val, element): + result = False + if isinstance(element, dict): # only one entry + if val == element['@id']: + return True + elif isinstance(element, list): # multiple entries + for e in element: + if val == e['@id']: + return True + elif not element: + pass + else: + raise ValueError(f'Unexpected type: {type(element)}') + return result + + +def is_element_in_list(element, lst): + if isinstance(element, dict): # only one entry + if element['@id'] in lst: + return True + + elif isinstance(element, list): # multiple entries + for e in element: + if e['@id'] in lst: + return True + else: + raise ValueError(f'Unexpected type: {type(element)}') + + +def id_to_label(id): + return data[id]['rdfs:label'] + + +def get_parent(item): + # value of subClassOf starts with d3f + if 'rdfs:subClassOf' in item: + # if 'd3f:enables' in item: + # parent_classes = get_as_list(item['d3f:enables']) + # else: + parent_classes = get_as_list(item['rdfs:subClassOf']) + for parent_class in parent_classes: + if parent_class.startswith('d3f'): + return parent_class + return None + + +def find_kill_chain_of(original_item): + # find if back in the kill chain_tactics list we built before + parent_classes = get_as_list(original_item['rdfs:subClassOf']) + for parent_class in parent_classes: + if parent_class.startswith('d3f'): + parent_class_name = id_to_label(parent_class).replace(' ', '-') + for tactic, phases in kill_chain_tactics.items(): + if parent_class_name in phases: + return f"{tactic}:{parent_class_name}" + # child with one more parent in between + for parent_class in parent_classes: + if parent_class.startswith('d3f'): + return find_kill_chain_of(data[parent_class]) + + +# first convert as dict with key = @id +data = {} +for item in d3fend_json['@graph']: + data[item['@id']] = item + +# tactic +for item in d3fend_json['@graph']: + if is_val_in_element('d3f:DefensiveTactic', item.get('rdfs:subClassOf')): + tactics[item['rdfs:label']] = { + 'order': item['d3f:display-order'], + 'phases': [] + } + print(f"Tactic: {item['rdfs:label']}") + +# phases +for item in d3fend_json['@graph']: + if 'rdfs:subClassOf' in item: + if is_val_in_element('d3f:DefensiveTechnique', item['rdfs:subClassOf']): + phases_ids.append(item['@id']) + parent = id_to_label(item['d3f:enables']['@id']) + tactics[parent]['phases'].append(item['rdfs:label'].replace(' ', '-')) + # print(f"Tactic: {parent} \tPhase: {item['rdfs:label']}") + +# sort the tactics based on the order +tactics = dict(sorted(tactics.items(), key=lambda item: item[1]['order'])) +# sort the values +kill_chain_tactics = {} +for tactic, value in tactics.items(): + kill_chain_tactics[tactic] = sorted(value['phases']) + + +# extract all parent, child and ... techniques +seen_new = True +while seen_new: + seen_new = False + for item in d3fend_json['@graph']: + if 'rdfs:subClassOf' in item: + element = item['rdfs:subClassOf'] + if is_element_in_list(element, phases_ids) or is_element_in_list(element, techniques_ids): + if item['@id'] in techniques_ids: + continue + seen_new = True + techniques_ids.append(item['@id']) + if 'Memory Boundary Tracking' in item['rdfs:label']: + print(f"Technique: {item['rdfs:label']}") + kill_chain = find_kill_chain_of(item) + technique = { + 'value': item['rdfs:label'], + 'description': item['d3f:definition'], + 'uuid': str(uuid.uuid5(uuid.UUID(uuid_seed), item['d3f:d3fend-id'])), + 'meta': { + 'kill_chain': [kill_chain], + 'refs': [f"https://d3fend.mitre.org/technique/{item['@id']}"], + 'external_id': item['d3f:d3fend-id'] + } + } + # synonyms + if 'd3f:synonym' in item: + technique['meta']['synonyms'] = get_as_list(item['d3f:synonym']) + # TODO relations + + techniques.append(technique) + print(f"Technique: {item['rdfs:label']} - {item['d3f:d3fend-id']}") + + +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/' +json_galaxy = { + 'description': galaxy_description, + 'icon': "map", + 'kill_chain_order': kill_chain_tactics, + 'name': galaxy_name, + 'namespace': "mitre", + 'type': galaxy_type, + 'uuid': "77d1bbfa-2982-4e0a-9238-1dae4a48c5b4", + 'version': 1 +} + +json_cluster = { + '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: + # do not sort_keys as it would break the kill_chain_order + json.dump(json_galaxy, f, indent=2, 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.") + From 2b3d62705d33c41ea77fcd2c4520b0d90461a6ed Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Tue, 28 May 2024 07:43:11 +0200 Subject: [PATCH 2/5] new: [d3fend] added relationships to ATT&CK --- .vscode/launch.json | 9 + clusters/mitre-d3fend.json | 34192 +++++++++++++++++++++++++++++++++++ galaxies/mitre-d3fend.json | 49 + tools/gen_mitre_d3fend.py | 70 +- 4 files changed, 34309 insertions(+), 11 deletions(-) create mode 100644 clusters/mitre-d3fend.json create mode 100644 galaxies/mitre-d3fend.json diff --git a/.vscode/launch.json b/.vscode/launch.json index 1519447..d4ac7c2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,15 @@ { "version": "0.2.0", "configurations": [ + { + "name": "gen_mitre_d3fend", + "type": "debugpy", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "args": "", + "cwd": "${fileDirname}" + }, { "name": "gen_mitre", "type": "debugpy", diff --git a/clusters/mitre-d3fend.json b/clusters/mitre-d3fend.json new file mode 100644 index 0000000..821da25 --- /dev/null +++ b/clusters/mitre-d3fend.json @@ -0,0 +1,34192 @@ +{ + "authors": [ + "MITRE" + ], + "category": "d3fend", + "description": "A knowledge graph of cybersecurity countermeasures.", + "name": "MITRE D3FEND", + "source": "https://d3fend.mitre.org/", + "type": "mitre-d3fend", + "uuid": "b8bd7e45-63bf-4c44-8ab1-c81c82547380", + "values": [ + { + "description": "Restoring software to a host.", + "meta": { + "external_id": "D3-RS", + "kill_chain": [ + "Restore:Restore-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreSoftware" + ] + }, + "related": [ + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "restores" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restores" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "restores" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "restores" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "restores" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "restores" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "restores" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "restores" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "restores" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restores" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "restores" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "restores" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "restores" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "restores" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restores" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restores" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "restores" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "restores" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "restores" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "restores" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "restores" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "restores" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "restores" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "restores" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restores" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "restores" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "restores" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "restores" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "restores" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "restores" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "restores" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "restores" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "restores" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "restores" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "restores" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restores" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "restores" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restores" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restores" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "restores" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "restores" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + } + ], + "uuid": "29d77727-12e5-5922-9d2d-70681803d686", + "value": "Restore Software" + }, + { + "description": "Encrypted encapsulation of routable network traffic.", + "meta": { + "external_id": "D3-ET", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:EncryptedTunnels" + ] + }, + "uuid": "4f6861bc-6c0b-51b1-bd5c-5b806951e2cd", + "value": "Encrypted Tunnels" + }, + { + "description": "Restoring a previously captured disk image a hard drive.", + "meta": { + "external_id": "D3-RDI", + "kill_chain": [ + "Restore:Restore-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreDiskImage" + ] + }, + "uuid": "5333dada-2a46-5f0a-b371-ca4d565e339c", + "value": "Restore Disk Image" + }, + { + "description": "Service dependency mapping determines the services on which each given service relies.", + "meta": { + "external_id": "D3-SVCDM", + "kill_chain": [ + "Model:System-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ServiceDependencyMapping" + ], + "synonyms": [ + "Distributed Tracing" + ] + }, + "uuid": "95dd39c0-2df7-5cc0-88f1-c692cdbceea8", + "value": "Service Dependency Mapping" + }, + { + "description": "The file removal technique deletes malicious artifacts or programs from a computer system.", + "meta": { + "external_id": "D3-FR", + "kill_chain": [ + "Evict:File-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileRemoval" + ], + "synonyms": [ + "File Deletion" + ] + }, + "related": [ + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "deletes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "deletes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "deletes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "deletes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "deletes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "deletes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "deletes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "deletes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "deletes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "deletes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "deletes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "deletes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "deletes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "deletes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "deletes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "deletes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "deletes" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "deletes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "deletes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "deletes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "deletes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "deletes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "deletes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "deletes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "deletes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "deletes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "deletes" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "deletes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "deletes" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "deletes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "deletes" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "deletes" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "deletes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "deletes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "deletes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "deletes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "deletes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "deletes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "deletes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "deletes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "deletes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "deletes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "deletes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "deletes" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "deletes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "deletes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "deletes" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "deletes" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "deletes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "deletes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "deletes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "deletes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "deletes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "deletes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "deletes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "deletes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "deletes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "deletes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "deletes" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "deletes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "deletes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "deletes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "deletes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "deletes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "deletes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "deletes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "deletes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "deletes" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "deletes" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "deletes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "deletes" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "deletes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "deletes" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "deletes" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "deletes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "deletes" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "deletes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "deletes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "deletes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "deletes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "deletes" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "deletes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "deletes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "deletes" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "deletes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "deletes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "deletes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "deletes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "deletes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "deletes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "deletes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "deletes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "deletes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "deletes" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "deletes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "deletes" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "deletes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "deletes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "deletes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "deletes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "deletes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "deletes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "deletes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "deletes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "deletes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "deletes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "deletes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "deletes" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "deletes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "deletes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "deletes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "deletes" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "deletes" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "deletes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "deletes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "deletes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "deletes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "deletes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "deletes" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "deletes" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "deletes" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "deletes" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "deletes" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "deletes" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "deletes" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "deletes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "deletes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "deletes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "deletes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "deletes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "deletes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "deletes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "deletes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "deletes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "deletes" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "deletes" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "deletes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "deletes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "deletes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "deletes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "deletes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "deletes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "deletes" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "deletes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "deletes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "deletes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "deletes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "deletes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "deletes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "deletes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "deletes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "deletes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "deletes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "deletes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "deletes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "deletes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "deletes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "deletes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "deletes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "deletes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "deletes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "deletes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "deletes" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "deletes" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "deletes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "deletes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "deletes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "deletes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "deletes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "deletes" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "deletes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "deletes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "deletes" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "deletes" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "deletes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "deletes" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "deletes" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "deletes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "deletes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "deletes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "deletes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "deletes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "deletes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "deletes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "deletes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "deletes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "deletes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "deletes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "deletes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "deletes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "deletes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "deletes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "deletes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "deletes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "deletes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "deletes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "deletes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "deletes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "deletes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "deletes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "deletes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "deletes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "deletes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "deletes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "deletes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "deletes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "deletes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "deletes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "deletes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "deletes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "deletes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "deletes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "deletes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "deletes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "deletes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "deletes" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "deletes" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "deletes" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "deletes" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "deletes" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "deletes" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "deletes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "deletes" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "deletes" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "deletes" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "deletes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "deletes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "deletes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "deletes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "deletes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "deletes" + } + ], + "uuid": "2fdd5180-fa37-56eb-9c0c-d0a3d3de5887", + "value": "File Removal" + }, + { + "description": "Network vulnerability assessment relates all the vulnerabilities of a network's components in the context of their configuration and interdependencies and can also include assessing risk emerging from the network's design as a whole, not just the sum of individual network node or network segment vulnerabilities.", + "meta": { + "external_id": "D3-NVA", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:NetworkVulnerabilityAssessment" + ] + }, + "uuid": "189e4b3b-1405-5caa-8643-c10d768d473e", + "value": "Network Vulnerability Assessment" + }, + { + "description": "The detection of an internal host relaying traffic between the internal network and the external network.", + "meta": { + "external_id": "D3-RPA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RelayPatternAnalysis" + ], + "synonyms": [ + "Relay Network Detection" + ] + }, + "related": [ + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + } + ], + "uuid": "5ab35c35-f181-523e-8cb8-947d23652d9f", + "value": "Relay Pattern Analysis" + }, + { + "description": "Blocking DNS Network Traffic based on criteria such as IP address, domain name, or DNS query type.", + "meta": { + "external_id": "D3-DNSDL", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DNSDenylisting" + ], + "synonyms": [ + "DNS Blacklisting" + ] + }, + "related": [ + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + } + ], + "uuid": "4301db4f-dde9-5376-ab2c-7654dc428e37", + "value": "DNS Denylisting" + }, + { + "description": "Asset vulnerability enumeration enriches inventory items with knowledge identifying their vulnerabilities.", + "meta": { + "external_id": "D3-AVE", + "kill_chain": [ + "Model:Asset-Inventory" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:AssetVulnerabilityEnumeration" + ] + }, + "related": [ + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "evaluates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "evaluates" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "evaluates" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "evaluates" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "evaluates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "evaluates" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "evaluates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "evaluates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "evaluates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "evaluates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "evaluates" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "evaluates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "evaluates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "evaluates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "evaluates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "evaluates" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "evaluates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "evaluates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "evaluates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "evaluates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "evaluates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "evaluates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "evaluates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "evaluates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "evaluates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "evaluates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "evaluates" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "evaluates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "evaluates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "evaluates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "evaluates" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "evaluates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "evaluates" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "evaluates" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "evaluates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "evaluates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "evaluates" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "evaluates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "evaluates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "evaluates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "evaluates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "evaluates" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "evaluates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "evaluates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "evaluates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "evaluates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "evaluates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "evaluates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "evaluates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "evaluates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "evaluates" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "evaluates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "evaluates" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "evaluates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "evaluates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "evaluates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "evaluates" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "evaluates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "evaluates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "evaluates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "evaluates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "evaluates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "evaluates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "evaluates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "evaluates" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "evaluates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "evaluates" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "evaluates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "evaluates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "evaluates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "evaluates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "evaluates" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "evaluates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "evaluates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "evaluates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "evaluates" + } + ], + "uuid": "f33f256f-34d7-541f-96c4-8c800483b73b", + "value": "Asset Vulnerability Enumeration" + }, + { + "description": "Monitoring code is injected into firmware for integrity monitoring of firmware and firmware data.", + "meta": { + "external_id": "D3-FEMC", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FirmwareEmbeddedMonitoringCode" + ] + }, + "related": [ + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + } + ], + "uuid": "81f25868-5be1-5df4-93bf-b215f4a67144", + "value": "Firmware Embedded Monitoring Code" + }, + { + "description": "An authentication token created for the purposes of deceiving an adversary.", + "meta": { + "external_id": "D3-DST", + "kill_chain": [ + "Deceive:Decoy-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DecoySessionToken" + ] + }, + "related": [ + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "spoofs" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + } + ], + "uuid": "b99c9f58-af74-5661-864b-776707bd69af", + "value": "Decoy Session Token" + }, + { + "description": "Requiring a digital certificate in order to authenticate a user.", + "meta": { + "external_id": "D3-CBAN", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:Certificate-basedAuthentication" + ] + }, + "uuid": "4f6fd329-73a1-5331-8595-c2fa5c8d6cc5", + "value": "Certificate-based Authentication" + }, + { + "description": "Encrypting a file using a cryptographic key.", + "meta": { + "external_id": "D3-FE", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileEncryption" + ] + }, + "related": [ + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "encrypts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "encrypts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "encrypts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "encrypts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "encrypts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "encrypts" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "encrypts" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "encrypts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "encrypts" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "encrypts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "encrypts" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "encrypts" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "encrypts" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "encrypts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "encrypts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "encrypts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "encrypts" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "encrypts" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "encrypts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "encrypts" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "encrypts" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "encrypts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "encrypts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "encrypts" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "encrypts" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "encrypts" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "encrypts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "encrypts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "encrypts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "encrypts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "encrypts" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "encrypts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "encrypts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "encrypts" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "encrypts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "encrypts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "encrypts" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "encrypts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "encrypts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "encrypts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "encrypts" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "encrypts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "encrypts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "encrypts" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "encrypts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "encrypts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "encrypts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "encrypts" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "encrypts" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "encrypts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "encrypts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "encrypts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "encrypts" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "encrypts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "encrypts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "encrypts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "encrypts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "encrypts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "encrypts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "encrypts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "encrypts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "encrypts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "encrypts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "encrypts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "encrypts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "encrypts" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "encrypts" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "encrypts" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "encrypts" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "encrypts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "encrypts" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "encrypts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "encrypts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "encrypts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "encrypts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "encrypts" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "encrypts" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "encrypts" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "encrypts" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "encrypts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "encrypts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "encrypts" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "encrypts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "encrypts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "encrypts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "encrypts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "encrypts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "encrypts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "encrypts" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "encrypts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "encrypts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "encrypts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "encrypts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "encrypts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "encrypts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "encrypts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "encrypts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "encrypts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "encrypts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "encrypts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "encrypts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "encrypts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "encrypts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "encrypts" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "encrypts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "encrypts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "encrypts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "encrypts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "encrypts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "encrypts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "encrypts" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "encrypts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "encrypts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "encrypts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "encrypts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "encrypts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "encrypts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "encrypts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "encrypts" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "encrypts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "encrypts" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "encrypts" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "encrypts" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "encrypts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "encrypts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "encrypts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "encrypts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "encrypts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "encrypts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "encrypts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "encrypts" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "encrypts" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "encrypts" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "encrypts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "encrypts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "encrypts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "encrypts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "encrypts" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "encrypts" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "encrypts" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "encrypts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "encrypts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "encrypts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "encrypts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "encrypts" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "encrypts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "encrypts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "encrypts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "encrypts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "encrypts" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "encrypts" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "encrypts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "encrypts" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "encrypts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "encrypts" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "encrypts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "encrypts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "encrypts" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "encrypts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "encrypts" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "encrypts" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "encrypts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "encrypts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "encrypts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "encrypts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "encrypts" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "encrypts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "encrypts" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "encrypts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "encrypts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "encrypts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "encrypts" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "encrypts" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "encrypts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "encrypts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "encrypts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "encrypts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "encrypts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "encrypts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "encrypts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "encrypts" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "encrypts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "encrypts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "encrypts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "encrypts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "encrypts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "encrypts" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "encrypts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "encrypts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "encrypts" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "encrypts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "encrypts" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "encrypts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "encrypts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "encrypts" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "encrypts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "encrypts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "encrypts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "encrypts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "encrypts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "encrypts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "encrypts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "encrypts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "encrypts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "encrypts" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "encrypts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "encrypts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "encrypts" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "encrypts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "encrypts" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "encrypts" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "encrypts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "encrypts" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "encrypts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "encrypts" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "encrypts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "encrypts" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "encrypts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "encrypts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "encrypts" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "encrypts" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "encrypts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "encrypts" + } + ], + "uuid": "0c9fdd66-2aef-53dd-9f13-195378c896c4", + "value": "File Encryption" + }, + { + "description": "Analyzing the behavior of embedded code in firmware and looking for anomalous behavior and suspicious activity.", + "meta": { + "external_id": "D3-FBA", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FirmwareBehaviorAnalysis" + ], + "synonyms": [ + "Firmware Timing Analysis" + ] + }, + "related": [ + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "analyzes" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "analyzes" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "analyzes" + } + ], + "uuid": "d20178ca-30de-529c-9a40-e71020922ac1", + "value": "Firmware Behavior Analysis" + }, + { + "description": "Collecting authorization events, creating a baseline user profile, and determining whether authorization events are consistent with the baseline profile.", + "meta": { + "external_id": "D3-AZET", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:AuthorizationEventThresholding" + ] + }, + "related": [ + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + } + ], + "uuid": "583a20a1-97f7-518f-9799-36df6fb57102", + "value": "Authorization Event Thresholding" + }, + { + "description": "System dependency mapping identifies and models the dependencies of system components on each other to carry out their function.", + "meta": { + "external_id": "D3-SYSDM", + "kill_chain": [ + "Model:System-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemDependencyMapping" + ] + }, + "uuid": "da7d9e4b-1d61-591f-890e-2346dee033be", + "value": "System Dependency Mapping" + }, + { + "description": "Modifying system configuration to increase password strength.", + "meta": { + "external_id": "D3-SPP", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:StrongPasswordPolicy" + ] + }, + "related": [ + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "strengthens" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "strengthens" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "strengthens" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "strengthens" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "strengthens" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "strengthens" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "strengthens" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "strengthens" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "strengthens" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "strengthens" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "strengthens" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "strengthens" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "strengthens" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "strengthens" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "strengthens" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "strengthens" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "strengthens" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "strengthens" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "strengthens" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "strengthens" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "strengthens" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "strengthens" + } + ], + "uuid": "6b924516-5351-5b37-ab43-ea65ae2e17e8", + "value": "Strong Password Policy" + }, + { + "description": "Monitoring geolocation data of user logon attempts and comparing it to a baseline user behavior profile to identify anomalies in logon location.", + "meta": { + "external_id": "D3-UGLPA", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:UserGeolocationLogonPatternAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + } + ], + "uuid": "9657e08e-f233-5d19-9586-5d58698cc232", + "value": "User Geolocation Logon Pattern Analysis" + }, + { + "description": "Analyzing the resources accessed by a user to identify unauthorized activity.", + "meta": { + "external_id": "D3-RAPA", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ResourceAccessPatternAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + } + ], + "uuid": "330b1db8-3ed7-52e1-a395-f1bc697a7e1a", + "value": "Resource Access Pattern Analysis" + }, + { + "description": "Taking known malicious identifiers and determining if they are present in a system.", + "meta": { + "external_id": "D3-IAA", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:IdentifierActivityAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + } + ], + "uuid": "1b5d2cee-4dca-51dc-8a18-163762082510", + "value": "Identifier Activity Analysis" + }, + { + "description": "Analyzing Public Key Infrastructure certificates to detect if they have been misconfigured or spoofed using both network traffic, certificate fields and third-party logs.", + "meta": { + "external_id": "D3-CA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:CertificateAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + } + ], + "uuid": "c562e16c-4f84-5d7d-a54a-21fbb013ea23", + "value": "Certificate Analysis" + }, + { + "description": "System vulnerability assessment relates all the vulnerabilities of a system's components in the context of their configuration and internal dependencies and can also include assessing risk emerging from the system's design as a whole, not just the sum of individual component vulnerabilities.", + "meta": { + "external_id": "D3-SYSVA", + "kill_chain": [ + "Model:System-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemVulnerabilityAssessment" + ] + }, + "related": [ + { + "dest-uuid": "824add00-99a1-4b15-9a2d-6c5683b7b497", + "type": "evaluates" + }, + { + "dest-uuid": "824add00-99a1-4b15-9a2d-6c5683b7b497", + "type": "evaluates" + } + ], + "uuid": "48a55ead-bd27-5530-b060-63032ac9f849", + "value": "System Vulnerability Assessment" + }, + { + "description": "Detecting anomalies in user access patterns by comparing user access activity to behavioral profiles that categorize users by role such as job title, function, department.", + "meta": { + "external_id": "D3-JFAPA", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:JobFunctionAccessPatternAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + } + ], + "uuid": "0cce711a-81ec-53ec-8a82-ccd5a2b3f8dc", + "value": "Job Function Access Pattern Analysis" + }, + { + "description": "Analyzing the files accessed by a process to identify unauthorized activity.", + "meta": { + "external_id": "D3-FAPA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileAccessPatternAnalysis" + ] + }, + "uuid": "0d08cf25-a816-5c0f-b3aa-5b9b51c3a5ae", + "value": "File Access Pattern Analysis" + }, + { + "description": "Encrypting a hard disk partition to prevent cleartext access to a file system.", + "meta": { + "external_id": "D3-DENCR", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DiskEncryption" + ] + }, + "related": [ + { + "dest-uuid": "8565825b-21c8-4518-b75e-cbc4c717a156", + "type": "encrypts" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "encrypts" + }, + { + "dest-uuid": "8565825b-21c8-4518-b75e-cbc4c717a156", + "type": "encrypts" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "encrypts" + } + ], + "uuid": "cf1d31be-4a4c-504f-b5d8-c4cff1d80157", + "value": "Disk Encryption" + }, + { + "description": "Restricting access to a local file by configuring operating system functionality.", + "meta": { + "external_id": "D3-LFP", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:LocalFilePermissions" + ] + }, + "related": [ + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restricts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restricts" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "restricts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restricts" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restricts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restricts" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restricts" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restricts" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restricts" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "restricts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restricts" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "restricts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restricts" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restricts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restricts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restricts" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "restricts" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "restricts" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "restricts" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restricts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restricts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restricts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restricts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restricts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restricts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "restricts" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restricts" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restricts" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "restricts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restricts" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "restricts" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "restricts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restricts" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "restricts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restricts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restricts" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restricts" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restricts" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "restricts" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "restricts" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "restricts" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restricts" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "restricts" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "restricts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restricts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restricts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restricts" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restricts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restricts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restricts" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "restricts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restricts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restricts" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "restricts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restricts" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "restricts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restricts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restricts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restricts" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "restricts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restricts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restricts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restricts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restricts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restricts" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "restricts" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "restricts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "restricts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restricts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "restricts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restricts" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "restricts" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "restricts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restricts" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "restricts" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restricts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restricts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restricts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restricts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restricts" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "restricts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restricts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restricts" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restricts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restricts" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "restricts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restricts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restricts" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "restricts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restricts" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restricts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restricts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restricts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restricts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restricts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "restricts" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "restricts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "restricts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restricts" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "restricts" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restricts" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "restricts" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restricts" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "restricts" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "restricts" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "restricts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restricts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restricts" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "restricts" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "restricts" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "restricts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "restricts" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "restricts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restricts" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restricts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restricts" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restricts" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "restricts" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "restricts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restricts" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restricts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restricts" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "restricts" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restricts" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restricts" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "restricts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restricts" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restricts" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restricts" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restricts" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restricts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restricts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restricts" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "restricts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restricts" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "restricts" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restricts" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "restricts" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "restricts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restricts" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restricts" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restricts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restricts" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restricts" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restricts" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restricts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restricts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restricts" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "restricts" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restricts" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "restricts" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restricts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restricts" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restricts" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restricts" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "restricts" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restricts" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restricts" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restricts" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restricts" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "restricts" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "restricts" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "restricts" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restricts" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restricts" + } + ], + "uuid": "96558b76-c4a8-5e9c-b4d2-fe6103717f14", + "value": "Local File Permissions" + }, + { + "description": "Network node inventorying identifies and records all the network nodes (hosts, routers, switches, firewalls, etc.) in the organization's architecture.", + "meta": { + "external_id": "D3-NNI", + "kill_chain": [ + "Model:Asset-Inventory" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:NetworkNodeInventory" + ], + "synonyms": [ + "System Discovery", + "System Inventorying" + ] + }, + "related": [ + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "inventories" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "inventories" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "inventories" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "inventories" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "inventories" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "inventories" + } + ], + "uuid": "ed4c88b9-98c8-5d87-a454-fc5bfadbe87f", + "value": "Network Node Inventory" + }, + { + "description": "Determining which credentials may have been compromised by analyzing the user logon history of a particular system.", + "meta": { + "external_id": "D3-CCSA", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:CredentialCompromiseScopeAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "analyzes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "analyzes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "analyzes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "analyzes" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "analyzes" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "analyzes" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "analyzes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "analyzes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "analyzes" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "analyzes" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "analyzes" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "analyzes" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "analyzes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "analyzes" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "analyzes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "analyzes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "analyzes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "analyzes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "analyzes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "analyzes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "analyzes" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "analyzes" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "analyzes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "analyzes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "analyzes" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "analyzes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "analyzes" + } + ], + "uuid": "cfc9c8f1-ed4b-5631-9ac2-34da65615f78", + "value": "Credential Compromise Scope Analysis" + }, + { + "description": "Analyzing vendor specific branch call recording in order to detect ROP style attacks.", + "meta": { + "external_id": "D3-IBCA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:IndirectBranchCallAnalysis" + ] + }, + "uuid": "8b313d6f-7c80-5363-8df2-9eeaf7b6b2dc", + "value": "Indirect Branch Call Analysis" + }, + { + "description": "Software inventorying identifies and records the software items in the organization's architecture.", + "meta": { + "external_id": "D3-SWI", + "kill_chain": [ + "Model:Asset-Inventory" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SoftwareInventory" + ], + "synonyms": [ + "Software Discovery", + "Software Inventorying" + ] + }, + "related": [ + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "inventories" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "inventories" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "inventories" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "inventories" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "inventories" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "inventories" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "inventories" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "inventories" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "inventories" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "inventories" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "inventories" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "inventories" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "inventories" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "inventories" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "inventories" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "inventories" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "inventories" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "inventories" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "inventories" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "inventories" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "inventories" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "inventories" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "inventories" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "inventories" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "inventories" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "inventories" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "inventories" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "inventories" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "inventories" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "inventories" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "inventories" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "inventories" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "inventories" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "inventories" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "inventories" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "inventories" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "inventories" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "inventories" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "inventories" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "inventories" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "inventories" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "inventories" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "inventories" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "inventories" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "inventories" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "inventories" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "inventories" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "inventories" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "inventories" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "inventories" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "inventories" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "inventories" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "inventories" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "inventories" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "inventories" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "inventories" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "inventories" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "inventories" + } + ], + "uuid": "e632f4db-2c4f-526a-ad4d-4b7de2704905", + "value": "Software Inventory" + }, + { + "description": "Terminating a running application process on a computer system.", + "meta": { + "external_id": "D3-PT", + "kill_chain": [ + "Evict:Process-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProcessTermination" + ] + }, + "related": [ + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "terminates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "terminates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "terminates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "terminates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + } + ], + "uuid": "e3db4b3a-45a1-5a0e-9c84-a987f0d77552", + "value": "Process Termination" + }, + { + "description": "Analyzing failed connections in a network to detect unauthorized activity.", + "meta": { + "external_id": "D3-CAA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ConnectionAttemptAnalysis" + ], + "synonyms": [ + "Network Scan Detection" + ] + }, + "related": [ + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + } + ], + "uuid": "10d2827d-2b3c-5afe-9aed-be770f276bcd", + "value": "Connection Attempt Analysis" + }, + { + "description": "Encrypting a message body using a cryptographic key.", + "meta": { + "external_id": "D3-MENCR", + "kill_chain": [ + "Harden:Message-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:MessageEncryption" + ] + }, + "uuid": "87e2441e-ea28-5150-8308-df05c5efe469", + "value": "Message Encryption" + }, + { + "description": "Randomizing the base (start) address of one or more segments of memory during the initialization of a process.", + "meta": { + "external_id": "D3-SAOR", + "kill_chain": [ + "Harden:Application-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SegmentAddressOffsetRandomization" + ], + "synonyms": [ + "ASLR", + "Address Space Layout Randomization" + ] + }, + "related": [ + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "obfuscates" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "obfuscates" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "obfuscates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "obfuscates" + }, + { + "dest-uuid": "4933e63b-9b77-476e-ab29-761bc5b7d15a", + "type": "obfuscates" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "obfuscates" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "obfuscates" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "obfuscates" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "obfuscates" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "obfuscates" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "obfuscates" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "obfuscates" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "obfuscates" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "obfuscates" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "obfuscates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "obfuscates" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "obfuscates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "obfuscates" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "obfuscates" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "obfuscates" + }, + { + "dest-uuid": "4933e63b-9b77-476e-ab29-761bc5b7d15a", + "type": "obfuscates" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "obfuscates" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "obfuscates" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "obfuscates" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "obfuscates" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "obfuscates" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "obfuscates" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "obfuscates" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "obfuscates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "obfuscates" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "obfuscates" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "obfuscates" + } + ], + "uuid": "16bb3607-f4a0-543e-9d1f-d5e0792b35d7", + "value": "Segment Address Offset Randomization" + }, + { + "description": "Restoring an software configuration.", + "meta": { + "external_id": "D3-RC", + "kill_chain": [ + "Restore:Restore-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreConfiguration" + ] + }, + "related": [ + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "restores" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restores" + }, + { + "dest-uuid": "19bf235b-8620-4997-b5b4-94e0659ed7c3", + "type": "restores" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "restores" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "restores" + }, + { + "dest-uuid": "e24fcba8-2557-4442-a139-1ee2f2e784db", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "restores" + }, + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "543fceb5-cb92-40cb-aacf-6913d4db58bc", + "type": "restores" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "restores" + }, + { + "dest-uuid": "c877e33f-1df6-40d6-b1e7-ce70f16f4979", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "restores" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "restores" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "restores" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "restores" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restores" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "restores" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "restores" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restores" + }, + { + "dest-uuid": "7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "type": "restores" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "restores" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "restores" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "restores" + }, + { + "dest-uuid": "e49920b0-6c54-40c1-9571-73723653205f", + "type": "restores" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restores" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "restores" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restores" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "restores" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "restores" + }, + { + "dest-uuid": "5372c5fe-f424-4def-bcd5-d3a8e770f07b", + "type": "restores" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "restores" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "restores" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "restores" + }, + { + "dest-uuid": "28170e17-8384-415c-8486-2e6b294cb803", + "type": "restores" + }, + { + "dest-uuid": "3d1b9d7e-3921-4d25-845a-7d9f15c0da44", + "type": "restores" + }, + { + "dest-uuid": "bf147104-abf9-4221-95d1-e81585859441", + "type": "restores" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "restores" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restores" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "restores" + }, + { + "dest-uuid": "3d1b9d7e-3921-4d25-845a-7d9f15c0da44", + "type": "restores" + }, + { + "dest-uuid": "bf147104-abf9-4221-95d1-e81585859441", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "restores" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restores" + }, + { + "dest-uuid": "5372c5fe-f424-4def-bcd5-d3a8e770f07b", + "type": "restores" + }, + { + "dest-uuid": "28170e17-8384-415c-8486-2e6b294cb803", + "type": "restores" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "restores" + }, + { + "dest-uuid": "19bf235b-8620-4997-b5b4-94e0659ed7c3", + "type": "restores" + }, + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "restores" + }, + { + "dest-uuid": "543fceb5-cb92-40cb-aacf-6913d4db58bc", + "type": "restores" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "restores" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "restores" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "restores" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "restores" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "restores" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "restores" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "restores" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "restores" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "restores" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "restores" + }, + { + "dest-uuid": "e24fcba8-2557-4442-a139-1ee2f2e784db", + "type": "restores" + }, + { + "dest-uuid": "e49920b0-6c54-40c1-9571-73723653205f", + "type": "restores" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "restores" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "c877e33f-1df6-40d6-b1e7-ce70f16f4979", + "type": "restores" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "restores" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "restores" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restores" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "restores" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "restores" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "restores" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "restores" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", + "type": "restores" + }, + { + "dest-uuid": "7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "type": "restores" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restores" + } + ], + "uuid": "63433457-ee95-551c-ad4f-b1b22c1816eb", + "value": "Restore Configuration" + }, + { + "description": "Deploying a network resource for the purposes of deceiving an adversary.", + "meta": { + "external_id": "D3-DNR", + "kill_chain": [ + "Deceive:Decoy-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DecoyNetworkResource" + ] + }, + "related": [ + { + "dest-uuid": "0cfe31a7-81fc-472c-bc45-e2808d1066a3", + "type": "spoofs" + }, + { + "dest-uuid": "0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "type": "spoofs" + }, + { + "dest-uuid": "0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "type": "spoofs" + }, + { + "dest-uuid": "246fd3c7-f5e3-466d-8787-4c13d9e3b61c", + "type": "spoofs" + }, + { + "dest-uuid": "7ad38ef1-381a-406d-872a-38b136eb5ecc", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + }, + { + "dest-uuid": "359b00ad-9425-420b-bba5-6de8d600cbc0", + "type": "spoofs" + }, + { + "dest-uuid": "a750a9f6-0bde-4bb3-9aae-1e2786e9780c", + "type": "spoofs" + }, + { + "dest-uuid": "7ad38ef1-381a-406d-872a-38b136eb5ecc", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + }, + { + "dest-uuid": "ae676644-d2d2-41b7-af7e-9bed1b55898c", + "type": "spoofs" + }, + { + "dest-uuid": "246fd3c7-f5e3-466d-8787-4c13d9e3b61c", + "type": "spoofs" + }, + { + "dest-uuid": "0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "type": "spoofs" + }, + { + "dest-uuid": "7ad38ef1-381a-406d-872a-38b136eb5ecc", + "type": "spoofs" + }, + { + "dest-uuid": "a750a9f6-0bde-4bb3-9aae-1e2786e9780c", + "type": "spoofs" + }, + { + "dest-uuid": "0cfe31a7-81fc-472c-bc45-e2808d1066a3", + "type": "spoofs" + }, + { + "dest-uuid": "ae676644-d2d2-41b7-af7e-9bed1b55898c", + "type": "spoofs" + }, + { + "dest-uuid": "359b00ad-9425-420b-bba5-6de8d600cbc0", + "type": "spoofs" + }, + { + "dest-uuid": "0c4b4fda-9062-47da-98b9-ceae2dcf052a", + "type": "spoofs" + }, + { + "dest-uuid": "7ad38ef1-381a-406d-872a-38b136eb5ecc", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + } + ], + "uuid": "d7c54f92-9914-5025-a5bd-0c69426f2004", + "value": "Decoy Network Resource" + }, + { + "description": "Replacing old software on a computer system component.", + "meta": { + "external_id": "D3-SU", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SoftwareUpdate" + ] + }, + "related": [ + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "updates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "updates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "updates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "updates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "updates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "updates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "updates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "updates" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "updates" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "updates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "updates" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "updates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "updates" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "updates" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "updates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "updates" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "updates" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "updates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "updates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "updates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "updates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "updates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "updates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "updates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "updates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "updates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "updates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "updates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "updates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "updates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "updates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "updates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "updates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "updates" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "updates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "updates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "updates" + }, + { + "dest-uuid": "b46a801b-fd98-491c-a25a-bca25d6e3001", + "type": "updates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "updates" + }, + { + "dest-uuid": "389735f1-f21c-4208-b8f0-f8031e7169b8", + "type": "updates" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "updates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "updates" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "updates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "updates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "updates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "updates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "updates" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "updates" + }, + { + "dest-uuid": "960c3c86-1480-4d72-b4e0-8c242e84a5c5", + "type": "updates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "updates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "updates" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "updates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "updates" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "updates" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "updates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "updates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "updates" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "updates" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "updates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "updates" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "updates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "updates" + }, + { + "dest-uuid": "191cc6af-1bb2-4344-ab5f-28e496638720", + "type": "updates" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "updates" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "updates" + }, + { + "dest-uuid": "bd369cd9-abb8-41ce-b5bb-fff23ee86c00", + "type": "updates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "updates" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "updates" + } + ], + "uuid": "8499c7a5-99f4-5867-82ad-d021026d7abb", + "value": "Software Update" + }, + { + "description": "A file created for the purposes of deceiving an adversary.", + "meta": { + "external_id": "D3-DF", + "kill_chain": [ + "Deceive:Decoy-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DecoyFile" + ] + }, + "related": [ + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "spoofs" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "spoofs" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "spoofs" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "spoofs" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "spoofs" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "spoofs" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "spoofs" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "spoofs" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "spoofs" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "spoofs" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "spoofs" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "spoofs" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "spoofs" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "spoofs" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "spoofs" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "spoofs" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "spoofs" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "spoofs" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "spoofs" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "spoofs" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "spoofs" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "spoofs" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "spoofs" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "spoofs" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "spoofs" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "spoofs" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "spoofs" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "spoofs" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "spoofs" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "spoofs" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "spoofs" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "spoofs" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "spoofs" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "spoofs" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "spoofs" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "spoofs" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "spoofs" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "spoofs" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "spoofs" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "spoofs" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "spoofs" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "spoofs" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "spoofs" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "spoofs" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "spoofs" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "spoofs" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "spoofs" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "spoofs" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "spoofs" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "spoofs" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "spoofs" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "spoofs" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "spoofs" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "spoofs" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "spoofs" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "spoofs" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "spoofs" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "spoofs" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "spoofs" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "spoofs" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "spoofs" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "spoofs" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "spoofs" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "spoofs" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "spoofs" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "spoofs" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "spoofs" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "spoofs" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "spoofs" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "spoofs" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "spoofs" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "spoofs" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "spoofs" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "spoofs" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "spoofs" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "spoofs" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "spoofs" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "spoofs" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "spoofs" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "spoofs" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "spoofs" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "spoofs" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "spoofs" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "spoofs" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "spoofs" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "spoofs" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "spoofs" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "spoofs" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "spoofs" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "spoofs" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "spoofs" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "spoofs" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "spoofs" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "spoofs" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "spoofs" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "spoofs" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "spoofs" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "spoofs" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "spoofs" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "spoofs" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "spoofs" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "spoofs" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "spoofs" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "spoofs" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "spoofs" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "spoofs" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "spoofs" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "spoofs" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "spoofs" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "spoofs" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "spoofs" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "spoofs" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "spoofs" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "spoofs" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "spoofs" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "spoofs" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "spoofs" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "spoofs" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "spoofs" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "spoofs" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "spoofs" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "spoofs" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "spoofs" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "spoofs" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "spoofs" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "spoofs" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "spoofs" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "spoofs" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "spoofs" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "spoofs" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "spoofs" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "spoofs" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "spoofs" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "spoofs" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "spoofs" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "spoofs" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "spoofs" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "spoofs" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "spoofs" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "spoofs" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "spoofs" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "spoofs" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "spoofs" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "spoofs" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "spoofs" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "spoofs" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "spoofs" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "spoofs" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "spoofs" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "spoofs" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "spoofs" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "spoofs" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "spoofs" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "spoofs" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "spoofs" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "spoofs" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "spoofs" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "spoofs" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "spoofs" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "spoofs" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "spoofs" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "spoofs" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "spoofs" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "spoofs" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "spoofs" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "spoofs" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "spoofs" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "spoofs" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "spoofs" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "spoofs" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "spoofs" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "spoofs" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "spoofs" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "spoofs" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "spoofs" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "spoofs" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "spoofs" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "spoofs" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "spoofs" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "spoofs" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "spoofs" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "spoofs" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "spoofs" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "spoofs" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "spoofs" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "spoofs" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "spoofs" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "spoofs" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "spoofs" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "spoofs" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "spoofs" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "spoofs" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "spoofs" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "spoofs" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "spoofs" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "spoofs" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "spoofs" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "spoofs" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "spoofs" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "spoofs" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "spoofs" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "spoofs" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "spoofs" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "spoofs" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "spoofs" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "spoofs" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "spoofs" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "spoofs" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "spoofs" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "spoofs" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "spoofs" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "spoofs" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "spoofs" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "spoofs" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "spoofs" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "spoofs" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "spoofs" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "spoofs" + } + ], + "uuid": "b859f04e-f52d-5208-8643-d3faff214e13", + "value": "Decoy File" + }, + { + "description": "Analysis of domain name metadata, including name and DNS records, to determine whether the domain is likely to resolve to an undesirable host.", + "meta": { + "external_id": "D3-DNSTA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DNSTrafficAnalysis" + ], + "synonyms": [ + "Domain Name Analysis" + ] + }, + "related": [ + { + "dest-uuid": "3257eb21-f9a7-4430-8de1-d8b6e288f529", + "type": "may-contain" + }, + { + "dest-uuid": "3257eb21-f9a7-4430-8de1-d8b6e288f529", + "type": "may-contain" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "3257eb21-f9a7-4430-8de1-d8b6e288f529", + "type": "may-contain" + }, + { + "dest-uuid": "3257eb21-f9a7-4430-8de1-d8b6e288f529", + "type": "may-contain" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + } + ], + "uuid": "cbe6cd4b-e6fb-595a-84b4-72956ac048f5", + "value": "DNS Traffic Analysis" + }, + { + "description": "Operational dependency mapping identifies and models the dependencies of the organization's activities on each other and on the organization's performers (people, systems, and services.) This may include modeling the higher- and lower-level activities of an organization forming a hierarchy, or layering, of the dependencies in an organization's activities.", + "meta": { + "external_id": "D3-ODM", + "kill_chain": [ + "Model:Operational-Activity-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:OperationalDependencyMapping" + ] + }, + "uuid": "8410a1a0-659b-5c22-b15b-1773e7271c70", + "value": "Operational Dependency Mapping" + }, + { + "description": "Logical link mapping creates a model of existing or previous node-to-node connections using network-layer data or metadata.", + "meta": { + "external_id": "D3-LLM", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:LogicalLinkMapping" + ] + }, + "related": [ + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + } + ], + "uuid": "9c757a9f-b2b1-5cb1-8131-0db345bac7da", + "value": "Logical Link Mapping" + }, + { + "description": "Monitoring changes in user web session behavior by comparing current web session activity to a baseline behavior profile or a catalog of predetermined malicious behavior.", + "meta": { + "external_id": "D3-WSAA", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:WebSessionActivityAnalysis" + ] + }, + "uuid": "3b7c5a04-c523-5600-9ac5-8dfb2765f428", + "value": "Web Session Activity Analysis" + }, + { + "description": "Physical link mapping identifies and models the link connectivity of the network devices within a physical network.", + "meta": { + "external_id": "D3-PLM", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:PhysicalLinkMapping" + ], + "synonyms": [ + "Layer 1 Mapping" + ] + }, + "related": [ + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "maps" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "maps" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "maps" + } + ], + "uuid": "60e93778-5f3b-5b2d-9ab3-a9e8e2f332ef", + "value": "Physical Link Mapping" + }, + { + "description": "Collecting authentication events, creating a baseline user profile, and determining whether authentication events are consistent with the baseline profile.", + "meta": { + "external_id": "D3-ANET", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:AuthenticationEventThresholding" + ] + }, + "related": [ + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + } + ], + "uuid": "621e2d87-e082-5a7b-87b7-bfe28d1a3374", + "value": "Authentication Event Thresholding" + }, + { + "description": "The operating system software, for D3FEND's purposes, includes the kernel and its process management functions, hardware drivers, initialization or boot logic. It also includes and other key system daemons and their configuration. The monitoring or analysis of these components for unauthorized activity constitute **Operating System Monitoring**.", + "meta": { + "external_id": "D3-OSM", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:OperatingSystemMonitoring" + ] + }, + "uuid": "78797100-f740-524c-ab93-1e988a209cef", + "value": "Operating System Monitoring" + }, + { + "description": "Blocking a lookup based on the query's domain name value.", + "meta": { + "external_id": "D3-FRDDL", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ForwardResolutionDomainDenylisting" + ], + "synonyms": [ + "Forward Resolution Domain Blacklisting" + ] + }, + "related": [ + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + } + ], + "uuid": "687690f0-e34e-51be-96aa-5be557feef43", + "value": "Forward Resolution Domain Denylisting" + }, + { + "description": "Detecting anomalies that indicate malicious activity by comparing the amount of data downloaded versus data uploaded by a host.", + "meta": { + "external_id": "D3-PHDURA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:PerHostDownload-UploadRatioAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + } + ], + "uuid": "7f468f98-b47e-5232-9f63-5d5c1f1e5d58", + "value": "Per Host Download-Upload Ratio Analysis" + }, + { + "description": "Analyzing standard inter process communication (IPC) protocols to detect deviations from normal protocol activity.", + "meta": { + "external_id": "D3-IPCTA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:IPCTrafficAnalysis" + ], + "synonyms": [ + "IPC Analysis" + ] + }, + "related": [ + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + } + ], + "uuid": "e1a49302-a7ef-5c03-b73f-4be00608e957", + "value": "IPC Traffic Analysis" + }, + { + "description": "Modifying an application's configuration to reduce its attack surface.", + "meta": { + "external_id": "D3-ACH", + "kill_chain": [ + "Harden:Application-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ApplicationConfigurationHardening" + ] + }, + "related": [ + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "hardens" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "hardens" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "hardens" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "hardens" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "hardens" + }, + { + "dest-uuid": "7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "type": "hardens" + }, + { + "dest-uuid": "7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "type": "hardens" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "hardens" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "hardens" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "hardens" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "hardens" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "hardens" + } + ], + "uuid": "8d4904ef-667f-50e4-bb55-7d20738e3155", + "value": "Application Configuration Hardening" + }, + { + "description": "Establishing baseline communities of network hosts and identifying statistically divergent inter-community communication.", + "meta": { + "external_id": "D3-NTCD", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:NetworkTrafficCommunityDeviation" + ] + }, + "related": [ + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + } + ], + "uuid": "d6d1ec4f-3928-5656-a04a-6e80c97b74c0", + "value": "Network Traffic Community Deviation" + }, + { + "description": "Analyzing inbound network session or connection attempt volume.", + "meta": { + "external_id": "D3-ISVA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:InboundSessionVolumeAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + } + ], + "uuid": "b1f4eab1-8302-547b-9e22-54d9eea625d2", + "value": "Inbound Session Volume Analysis" + }, + { + "description": "Using kernel-level capabilities to isolate processes.", + "meta": { + "external_id": "D3-KBPI", + "kill_chain": [ + "Isolate:Execution-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:Kernel-basedProcessIsolation" + ] + }, + "uuid": "bbf4fdc8-1b03-5654-b092-d8bd180d49fd", + "value": "Kernel-based Process Isolation" + }, + { + "description": "Monitoring the activity of remote procedure calls in communication traffic to establish standard protocol operations and potential attacker activities.", + "meta": { + "external_id": "D3-RTA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RPCTrafficAnalysis" + ], + "synonyms": [ + "RPC Protocol Analysis" + ] + }, + "related": [ + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + } + ], + "uuid": "57d0c22d-7fc8-545d-a6da-fb32a3ff2106", + "value": "RPC Traffic Analysis" + }, + { + "description": "Restoring the data in a database.", + "meta": { + "external_id": "D3-RD", + "kill_chain": [ + "Restore:Restore-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreDatabase" + ] + }, + "related": [ + { + "dest-uuid": "341e222a-a6e3-4f6f-b69c-831d792b1580", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "restores" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restores" + }, + { + "dest-uuid": "c1b68a96-3c48-49ea-a6c0-9b27359f9c19", + "type": "restores" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "restores" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restores" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "restores" + }, + { + "dest-uuid": "1a80d097-54df-41d8-9d33-34e755ec5e72", + "type": "restores" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "restores" + }, + { + "dest-uuid": "1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "type": "restores" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "restores" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "restores" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restores" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restores" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restores" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "restores" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restores" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restores" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "restores" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "restores" + }, + { + "dest-uuid": "57340c81-c025-4189-8fa0-fc7ede51bae4", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restores" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "restores" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restores" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restores" + }, + { + "dest-uuid": "1a80d097-54df-41d8-9d33-34e755ec5e72", + "type": "restores" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "restores" + }, + { + "dest-uuid": "1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "type": "restores" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restores" + }, + { + "dest-uuid": "341e222a-a6e3-4f6f-b69c-831d792b1580", + "type": "restores" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "restores" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "restores" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "restores" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restores" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "restores" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restores" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restores" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restores" + }, + { + "dest-uuid": "57340c81-c025-4189-8fa0-fc7ede51bae4", + "type": "restores" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restores" + }, + { + "dest-uuid": "c1b68a96-3c48-49ea-a6c0-9b27359f9c19", + "type": "restores" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "restores" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restores" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "restores" + } + ], + "uuid": "435fcc7a-b288-59f2-bd73-0165120d6d13", + "value": "Restore Database" + }, + { + "description": "Establishing a fake online identity to misdirect, deceive, and or interact with adversaries.", + "meta": { + "external_id": "D3-DP", + "kill_chain": [ + "Deceive:Decoy-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DecoyPersona" + ] + }, + "uuid": "a6478818-65c0-5991-859c-4bced927b96b", + "value": "Decoy Persona" + }, + { + "description": "Comparing a value stored in a stack frame with a known good value in order to prevent or detect a memory segment overwrite.", + "meta": { + "external_id": "D3-SFCV", + "kill_chain": [ + "Harden:Application-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:StackFrameCanaryValidation" + ] + }, + "related": [ + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "validates" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "validates" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "validates" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "validates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "validates" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "validates" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "validates" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "validates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "validates" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "validates" + } + ], + "uuid": "3c89698e-452a-55bd-b231-2b8a9121560c", + "value": "Stack Frame Canary Validation" + }, + { + "description": "Hardware component inventorying identifies and records the hardware items in the organization's architecture.", + "meta": { + "external_id": "D3-HCI", + "kill_chain": [ + "Model:Asset-Inventory" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:HardwareComponentInventory" + ], + "synonyms": [ + "Hardware Component Discovery", + "Hardware Component Inventorying" + ] + }, + "related": [ + { + "dest-uuid": "39131305-9282-45e4-ac3b-591d2d4fc3ef", + "type": "inventories" + }, + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "inventories" + }, + { + "dest-uuid": "a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "type": "inventories" + }, + { + "dest-uuid": "d40239b3-05ff-46d8-9bdd-b46d13463ef9", + "type": "inventories" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "inventories" + }, + { + "dest-uuid": "6faf650d-bf31-4eb4-802d-1000cf38efaf", + "type": "inventories" + }, + { + "dest-uuid": "1035cdf2-3e5f-446f-a7a7-e8f6d7925967", + "type": "inventories" + }, + { + "dest-uuid": "1b7ba276-eedc-4951-a762-0ceea2c030ec", + "type": "inventories" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "inventories" + }, + { + "dest-uuid": "dd43c543-bb85-4a6f-aa6e-160d90d06a49", + "type": "inventories" + }, + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "inventories" + }, + { + "dest-uuid": "8565825b-21c8-4518-b75e-cbc4c717a156", + "type": "inventories" + }, + { + "dest-uuid": "64196062-5210-42c3-9a02-563a0d1797ef", + "type": "inventories" + }, + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "inventories" + }, + { + "dest-uuid": "1b7ba276-eedc-4951-a762-0ceea2c030ec", + "type": "inventories" + }, + { + "dest-uuid": "8565825b-21c8-4518-b75e-cbc4c717a156", + "type": "inventories" + }, + { + "dest-uuid": "1035cdf2-3e5f-446f-a7a7-e8f6d7925967", + "type": "inventories" + }, + { + "dest-uuid": "dd43c543-bb85-4a6f-aa6e-160d90d06a49", + "type": "inventories" + }, + { + "dest-uuid": "d40239b3-05ff-46d8-9bdd-b46d13463ef9", + "type": "inventories" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "inventories" + }, + { + "dest-uuid": "6faf650d-bf31-4eb4-802d-1000cf38efaf", + "type": "inventories" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "inventories" + }, + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "inventories" + }, + { + "dest-uuid": "39131305-9282-45e4-ac3b-591d2d4fc3ef", + "type": "inventories" + }, + { + "dest-uuid": "64196062-5210-42c3-9a02-563a0d1797ef", + "type": "inventories" + }, + { + "dest-uuid": "a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "type": "inventories" + } + ], + "uuid": "980ecd8a-c1ac-5641-9fa9-d569dc659f88", + "value": "Hardware Component Inventory" + }, + { + "description": "Data inventorying identifies and records the schemas, formats, volumes, and locations of data stored and used on the organization's architecture.", + "meta": { + "external_id": "D3-DI", + "kill_chain": [ + "Model:Asset-Inventory" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DataInventory" + ], + "synonyms": [ + "Data Discovery", + "Data Inventorying" + ] + }, + "related": [ + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "inventories" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "inventories" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "inventories" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "inventories" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "inventories" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "inventories" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "inventories" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "inventories" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "inventories" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "inventories" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "inventories" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "inventories" + }, + { + "dest-uuid": "341e222a-a6e3-4f6f-b69c-831d792b1580", + "type": "inventories" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "inventories" + }, + { + "dest-uuid": "1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "type": "inventories" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "inventories" + }, + { + "dest-uuid": "1a80d097-54df-41d8-9d33-34e755ec5e72", + "type": "inventories" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "inventories" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "inventories" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "inventories" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "inventories" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "inventories" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "inventories" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "inventories" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "inventories" + }, + { + "dest-uuid": "57340c81-c025-4189-8fa0-fc7ede51bae4", + "type": "inventories" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "inventories" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "inventories" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "inventories" + }, + { + "dest-uuid": "c1b68a96-3c48-49ea-a6c0-9b27359f9c19", + "type": "inventories" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "inventories" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "inventories" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "inventories" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "inventories" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "inventories" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "inventories" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "inventories" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "inventories" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "inventories" + }, + { + "dest-uuid": "57340c81-c025-4189-8fa0-fc7ede51bae4", + "type": "inventories" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "inventories" + }, + { + "dest-uuid": "1a80d097-54df-41d8-9d33-34e755ec5e72", + "type": "inventories" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "inventories" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "inventories" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "inventories" + }, + { + "dest-uuid": "1eaebf46-e361-4437-bc23-d5d65a3b92e3", + "type": "inventories" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "inventories" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "inventories" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "inventories" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "inventories" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "inventories" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "inventories" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "inventories" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "inventories" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "inventories" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "inventories" + }, + { + "dest-uuid": "341e222a-a6e3-4f6f-b69c-831d792b1580", + "type": "inventories" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "inventories" + }, + { + "dest-uuid": "c1b68a96-3c48-49ea-a6c0-9b27359f9c19", + "type": "inventories" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "inventories" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "inventories" + }, + { + "dest-uuid": "cff94884-3b1c-4987-a70b-6d5643c621c3", + "type": "inventories" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "inventories" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "inventories" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "inventories" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "inventories" + } + ], + "uuid": "9a661e49-0ad0-59ce-a2fe-0248b0bc04cd", + "value": "Data Inventory" + }, + { + "description": "Analyzing the execution of a script to detect unauthorized user activity.", + "meta": { + "external_id": "D3-SEA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ScriptExecutionAnalysis" + ] + }, + "uuid": "fd255e90-f94a-5739-96e0-53f15ce9a235", + "value": "Script Execution Analysis" + }, + { + "description": "Assuring the integrity of a platform by demonstrating that the boot process starts from a trusted combination of hardware and software and continues until the operating system has fully booted and applications are running. Sometimes called Static Root of Trust Measurement (STRM).", + "meta": { + "external_id": "D3-TBI", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:TPMBootIntegrity" + ], + "synonyms": [ + "STRM", + "Static Root of Trust Measurement" + ] + }, + "uuid": "8a6c78e5-9271-5d2a-9310-2bbf0e32ca33", + "value": "TPM Boot Integrity" + }, + { + "description": "Analyzing local user accounts to detect unauthorized activity.", + "meta": { + "external_id": "D3-LAM", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:LocalAccountMonitoring" + ] + }, + "related": [ + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "analyzes" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "analyzes" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "analyzes" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "analyzes" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "analyzes" + } + ], + "uuid": "973b66cc-2e20-5d00-b721-989b5907f6d1", + "value": "Local Account Monitoring" + }, + { + "description": "Limiting access to computer input/output (IO) ports to restrict unauthorized devices.", + "meta": { + "external_id": "D3-IOPR", + "kill_chain": [ + "Isolate:Execution-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:IOPortRestriction" + ] + }, + "related": [ + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "filters" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "filters" + }, + { + "dest-uuid": "6faf650d-bf31-4eb4-802d-1000cf38efaf", + "type": "filters" + }, + { + "dest-uuid": "1035cdf2-3e5f-446f-a7a7-e8f6d7925967", + "type": "filters" + }, + { + "dest-uuid": "1b7ba276-eedc-4951-a762-0ceea2c030ec", + "type": "filters" + }, + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "filters" + }, + { + "dest-uuid": "64196062-5210-42c3-9a02-563a0d1797ef", + "type": "filters" + }, + { + "dest-uuid": "a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "type": "filters" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "filters" + }, + { + "dest-uuid": "a3e1e6c5-9c74-4fc0-a16c-a9d228c17829", + "type": "filters" + }, + { + "dest-uuid": "6faf650d-bf31-4eb4-802d-1000cf38efaf", + "type": "filters" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "filters" + }, + { + "dest-uuid": "1b7ba276-eedc-4951-a762-0ceea2c030ec", + "type": "filters" + }, + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "filters" + }, + { + "dest-uuid": "64196062-5210-42c3-9a02-563a0d1797ef", + "type": "filters" + }, + { + "dest-uuid": "1035cdf2-3e5f-446f-a7a7-e8f6d7925967", + "type": "filters" + }, + { + "dest-uuid": "3b744087-9945-4a6f-91e8-9dbceda417a4", + "type": "filters" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "filters" + } + ], + "uuid": "8b28f8d0-4bb0-5c7f-a30e-6fee1748b4d8", + "value": "IO Port Restriction" + }, + { + "description": "The email removal technique deletes email files from system storage.", + "meta": { + "external_id": "D3-ER", + "kill_chain": [ + "Evict:File-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:EmailRemoval" + ], + "synonyms": [ + "Email Deletion" + ] + }, + "related": [ + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "may-access" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "may-access" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "deletes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "deletes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "deletes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "deletes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "may-access" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "may-access" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "may-access" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "may-access" + } + ], + "uuid": "90dd8e5b-d458-5c1f-ae56-0401e5cfc6b8", + "value": "Email Removal" + }, + { + "description": "Executing or opening a file in a synthetic \"sandbox\" environment to determine if the file is a malicious program or if the file exploits another program such as a document reader.", + "meta": { + "external_id": "D3-DA", + "kill_chain": [ + "Detect:File-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DynamicAnalysis" + ], + "synonyms": [ + "Malware Detonation", + "Malware Sandbox" + ] + }, + "related": [ + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "analyzes" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "analyzes" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "analyzes" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + } + ], + "uuid": "d7f78817-ede1-5f97-94db-2d484ccc5f00", + "value": "Dynamic Analysis" + }, + { + "description": "Analyzing a call stack for return addresses which point to unexpected memory locations.", + "meta": { + "external_id": "D3-MBT", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:MemoryBoundaryTracking" + ] + }, + "related": [ + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "analyzes" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "analyzes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "analyzes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "analyzes" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "analyzes" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "analyzes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "analyzes" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "analyzes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "analyzes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "analyzes" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "analyzes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "analyzes" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "analyzes" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "analyzes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "analyzes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "analyzes" + } + ], + "uuid": "aa139b8e-02a6-530a-8b44-902ad7d8cca0", + "value": "Memory Boundary Tracking" + }, + { + "description": "Analyzing database queries to detect [SQL Injection](https://capec.mitre.org/data/definitions/66.html).", + "meta": { + "external_id": "D3-DQSA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DatabaseQueryStringAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + } + ], + "uuid": "ed06408b-9f66-5944-b55c-460fcfd390ea", + "value": "Database Query String Analysis" + }, + { + "description": "Employing a pattern matching algorithm to statically analyze the content of files.", + "meta": { + "external_id": "D3-FCOA", + "kill_chain": [ + "Detect:File-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileContentAnalysis" + ] + }, + "uuid": "ee4e12e9-895b-56e6-b396-2c8076653d5c", + "value": "File Content Analysis" + }, + { + "description": "Configuration inventory identifies and records the configuration of software and hardware and their components throughout the organization.", + "meta": { + "external_id": "D3-CI", + "kill_chain": [ + "Model:Asset-Inventory" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ConfigurationInventory" + ] + }, + "related": [ + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "inventories" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "inventories" + }, + { + "dest-uuid": "28170e17-8384-415c-8486-2e6b294cb803", + "type": "inventories" + }, + { + "dest-uuid": "5372c5fe-f424-4def-bcd5-d3a8e770f07b", + "type": "inventories" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "inventories" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "inventories" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "inventories" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "inventories" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "inventories" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "inventories" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "inventories" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "inventories" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "inventories" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "inventories" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "inventories" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "inventories" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "inventories" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "inventories" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "inventories" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "inventories" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "inventories" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "inventories" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "inventories" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "inventories" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "inventories" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "inventories" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "inventories" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "inventories" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "inventories" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "inventories" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "inventories" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "inventories" + }, + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "inventories" + }, + { + "dest-uuid": "19bf235b-8620-4997-b5b4-94e0659ed7c3", + "type": "inventories" + }, + { + "dest-uuid": "7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "type": "inventories" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "inventories" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "inventories" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "inventories" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "inventories" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "inventories" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "inventories" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "inventories" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "inventories" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "inventories" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "inventories" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "inventories" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "inventories" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "inventories" + }, + { + "dest-uuid": "bf147104-abf9-4221-95d1-e81585859441", + "type": "inventories" + }, + { + "dest-uuid": "3d1b9d7e-3921-4d25-845a-7d9f15c0da44", + "type": "inventories" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "inventories" + }, + { + "dest-uuid": "ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", + "type": "inventories" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "inventories" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "inventories" + }, + { + "dest-uuid": "543fceb5-cb92-40cb-aacf-6913d4db58bc", + "type": "inventories" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "inventories" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "inventories" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "inventories" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "inventories" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "inventories" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "inventories" + }, + { + "dest-uuid": "c877e33f-1df6-40d6-b1e7-ce70f16f4979", + "type": "inventories" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "inventories" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "inventories" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "inventories" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "inventories" + }, + { + "dest-uuid": "e49920b0-6c54-40c1-9571-73723653205f", + "type": "inventories" + }, + { + "dest-uuid": "e24fcba8-2557-4442-a139-1ee2f2e784db", + "type": "inventories" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "inventories" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "inventories" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "inventories" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "inventories" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "inventories" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "inventories" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "inventories" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "inventories" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "inventories" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "inventories" + }, + { + "dest-uuid": "28170e17-8384-415c-8486-2e6b294cb803", + "type": "inventories" + }, + { + "dest-uuid": "5372c5fe-f424-4def-bcd5-d3a8e770f07b", + "type": "inventories" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "inventories" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "inventories" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "inventories" + }, + { + "dest-uuid": "7d77a07d-02fe-4e88-8bd9-e9c008c01bf0", + "type": "inventories" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "inventories" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "inventories" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "inventories" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "inventories" + }, + { + "dest-uuid": "42fe883a-21ea-4cfb-b94a-78b6476dcc83", + "type": "inventories" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "inventories" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "inventories" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "inventories" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "inventories" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "inventories" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "inventories" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "inventories" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "inventories" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "inventories" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "inventories" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "inventories" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "inventories" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "inventories" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "inventories" + }, + { + "dest-uuid": "6836813e-8ec8-4375-b459-abb388cb1a35", + "type": "inventories" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "inventories" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "inventories" + }, + { + "dest-uuid": "4eb28bed-d11a-4641-9863-c2ac017d910a", + "type": "inventories" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "inventories" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "inventories" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "inventories" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "inventories" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "inventories" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "inventories" + }, + { + "dest-uuid": "c877e33f-1df6-40d6-b1e7-ce70f16f4979", + "type": "inventories" + }, + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "inventories" + }, + { + "dest-uuid": "e49920b0-6c54-40c1-9571-73723653205f", + "type": "inventories" + }, + { + "dest-uuid": "3d1b9d7e-3921-4d25-845a-7d9f15c0da44", + "type": "inventories" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "inventories" + }, + { + "dest-uuid": "ed7efd4d-ce28-4a19-a8e6-c58011eb2c7a", + "type": "inventories" + }, + { + "dest-uuid": "bf147104-abf9-4221-95d1-e81585859441", + "type": "inventories" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "inventories" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "inventories" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "inventories" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "inventories" + }, + { + "dest-uuid": "43881e51-ac74-445b-b4c6-f9f9e9bf23fe", + "type": "inventories" + }, + { + "dest-uuid": "19bf235b-8620-4997-b5b4-94e0659ed7c3", + "type": "inventories" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "inventories" + }, + { + "dest-uuid": "b8cfed42-6a8a-4989-ad72-541af74475ec", + "type": "inventories" + }, + { + "dest-uuid": "61afc315-860c-4364-825d-0d62b2e91edc", + "type": "inventories" + }, + { + "dest-uuid": "e24fcba8-2557-4442-a139-1ee2f2e784db", + "type": "inventories" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "inventories" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "inventories" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "inventories" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "inventories" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "inventories" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "inventories" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "inventories" + }, + { + "dest-uuid": "5095a853-299c-4876-abd7-ac0050fb5462", + "type": "inventories" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "inventories" + }, + { + "dest-uuid": "543fceb5-cb92-40cb-aacf-6913d4db58bc", + "type": "inventories" + }, + { + "dest-uuid": "98034fef-d9fb-4667-8dc4-2eab6231724c", + "type": "inventories" + }, + { + "dest-uuid": "0cf55441-b176-4332-89e7-2c4c7799d0ff", + "type": "inventories" + } + ], + "uuid": "ad7ad696-4506-533e-815b-bf592e6bda72", + "value": "Configuration Inventory" + }, + { + "description": "Monitoring the security status of an endpoint by sending periodic messages with health status, where absence of a response may indicate that the endpoint has been compromised.", + "meta": { + "external_id": "D3-EHB", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:EndpointHealthBeacon" + ], + "synonyms": [ + "Endpoint Health Telemetry" + ] + }, + "related": [ + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "monitors" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "monitors" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "monitors" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "monitors" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "monitors" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "monitors" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "monitors" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "monitors" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "monitors" + } + ], + "uuid": "294dc5cb-1390-5a0d-bd6a-b151a390afcd", + "value": "Endpoint Health Beacon" + }, + { + "description": "Ascertaining sender reputation based on information associated with a message (e.g. email/instant messaging).", + "meta": { + "external_id": "D3-SRA", + "kill_chain": [ + "Detect:Message-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SenderReputationAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + } + ], + "uuid": "0f7337cb-443c-5a18-8254-9a90406c7df0", + "value": "Sender Reputation Analysis" + }, + { + "description": "Restoring a entity's access to a computer network.", + "meta": { + "external_id": "D3-RNA", + "kill_chain": [ + "Restore:Restore-Access" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreNetworkAccess" + ] + }, + "related": [ + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "restores" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "restores" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "restores" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "restores" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "restores" + }, + { + "dest-uuid": "b4694861-542c-48ea-9eb1-10d356e7140a", + "type": "restores" + } + ], + "uuid": "5fb3b47e-583b-5631-8934-50a116492d77", + "value": "Restore Network Access" + }, + { + "description": "An environment created for the purpose of attracting attackers and eliciting their behaviors that is not connected to any production enterprise systems.", + "meta": { + "external_id": "D3-SHN", + "kill_chain": [ + "Deceive:Decoy-Environment" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:StandaloneHoneynet" + ] + }, + "uuid": "e32ffe48-419f-563e-be1b-95ca18aa3a75", + "value": "Standalone Honeynet" + }, + { + "description": "Blocking the resolution of any subdomain of a specified domain name.", + "meta": { + "external_id": "D3-HDDL", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:HierarchicalDomainDenylisting" + ], + "synonyms": [ + "Hierarchical Domain Blacklisting" + ] + }, + "uuid": "273a6f4c-6b85-5926-a967-093b16dcf7f9", + "value": "Hierarchical Domain Denylisting" + }, + { + "description": "Analyzing the duration of user sessions in order to detect unauthorized activity.", + "meta": { + "external_id": "D3-SDA", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SessionDurationAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "e624264c-033a-424d-9fd7-fc9c3bbdb03e", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "7b211ac6-c815-4189-93a9-ab415deca926", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + } + ], + "uuid": "64eaa3c5-ded3-5fc3-9ed5-606c93500f31", + "value": "Session Duration Analysis" + }, + { + "description": "Analysis of source files, processes, destination files, or destination servers associated with a scheduled job to detect unauthorized use of job scheduling.", + "meta": { + "external_id": "D3-SJA", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ScheduledJobAnalysis" + ], + "synonyms": [ + "Scheduled Job Execution" + ] + }, + "related": [ + { + "dest-uuid": "7bdca9d5-d500-4d7d-8c52-5fd47baf4c0c", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "7bdca9d5-d500-4d7d-8c52-5fd47baf4c0c", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "7bdca9d5-d500-4d7d-8c52-5fd47baf4c0c", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + } + ], + "uuid": "effd6eb2-42cd-53ca-8fda-b75df23a32e5", + "value": "Scheduled Job Analysis" + }, + { + "description": "Operational risk assessment identifies and models the vulnerabilities of, and risks to, an organization's activities individually and as a whole.", + "meta": { + "external_id": "D3-ORA", + "kill_chain": [ + "Model:Operational-Activity-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:OperationalRiskAssessment" + ], + "synonyms": [ + "Mission Risk Assessment" + ] + }, + "uuid": "d39f626b-6f4f-51fa-a5fc-f2026bd3f330", + "value": "Operational Risk Assessment" + }, + { + "description": "Expiring an existing set of credentials and reissuing a new valid set", + "meta": { + "external_id": "D3-CRO", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:CredentialRotation" + ] + }, + "related": [ + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "regenerates" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "regenerates" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "regenerates" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "regenerates" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "regenerates" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "regenerates" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "regenerates" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "regenerates" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "regenerates" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "regenerates" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "regenerates" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "regenerates" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "regenerates" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "regenerates" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "regenerates" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "regenerates" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "regenerates" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "regenerates" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "regenerates" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "regenerates" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "regenerates" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "regenerates" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "regenerates" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "regenerates" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "regenerates" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "regenerates" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "regenerates" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "regenerates" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "regenerates" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "regenerates" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "regenerates" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "regenerates" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "regenerates" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "regenerates" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "regenerates" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "regenerates" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "regenerates" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "regenerates" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "regenerates" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "regenerates" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "regenerates" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "regenerates" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "regenerates" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "regenerates" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "regenerates" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "regenerates" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "regenerates" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "regenerates" + } + ], + "uuid": "9aeb6253-9380-5adb-92cb-9ace6d888cea", + "value": "Credential Rotation" + }, + { + "description": "Monitoring system files such as authentication databases, configuration files, system logs, and system executables for modification or tampering.", + "meta": { + "external_id": "D3-SFA", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemFileAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "analyzes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + } + ], + "uuid": "9ad8e124-512b-5c6f-b66b-69c71cc604b5", + "value": "System File Analysis" + }, + { + "description": "Removing tokens or credentials from an authentication cache to prevent further user associated account accesses.", + "meta": { + "external_id": "D3-ANCI", + "kill_chain": [ + "Evict:Credential-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:AuthenticationCacheInvalidation" + ] + }, + "related": [ + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "deletes" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "deletes" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "deletes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "deletes" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "deletes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "deletes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "deletes" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "deletes" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "deletes" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "deletes" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "deletes" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "deletes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "deletes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "deletes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "deletes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + } + ], + "uuid": "164fdf79-38bb-56fc-844f-c7c8abbfd7a2", + "value": "Authentication Cache Invalidation" + }, + { + "description": "Comparing client-server request and response payloads to a baseline profile to identify outliers.", + "meta": { + "external_id": "D3-CSPP", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:Client-serverPayloadProfiling" + ] + }, + "related": [ + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + } + ], + "uuid": "7887aa4f-b724-5df5-a07b-9eb89706d7c7", + "value": "Client-server Payload Profiling" + }, + { + "description": "Analyzing sequences of bytes and determining if they likely represent malicious shellcode.", + "meta": { + "external_id": "D3-BSE", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ByteSequenceEmulation" + ], + "synonyms": [ + "Shellcode Transmission Detection" + ] + }, + "uuid": "cd8e283c-bc7d-55de-a6c5-88b480316485", + "value": "Byte Sequence Emulation" + }, + { + "description": "Comparing a call stack in system memory with a shadow call stack maintained by the processor to determine unauthorized shellcode activity.", + "meta": { + "external_id": "D3-SSC", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ShadowStackComparisons" + ] + }, + "related": [ + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "analyzes" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "analyzes" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "analyzes" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "analyzes" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + } + ], + "uuid": "856204a9-0a3e-59e8-8858-f75f1ed09aea", + "value": "Shadow Stack Comparisons" + }, + { + "description": "Analyzing the reputation of an identifier.", + "meta": { + "external_id": "D3-IRA", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:IdentifierReputationAnalysis" + ] + }, + "uuid": "ca03c9c0-09ac-51c5-85f5-4992bc29e5ef", + "value": "Identifier Reputation Analysis" + }, + { + "description": "Restoring a file for an entity to access.", + "meta": { + "external_id": "D3-RF", + "kill_chain": [ + "Restore:Restore-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreFile" + ] + }, + "related": [ + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "restores" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "restores" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restores" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restores" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "restores" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "restores" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restores" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restores" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restores" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restores" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "restores" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "restores" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restores" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "restores" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "restores" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restores" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restores" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restores" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restores" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restores" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restores" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restores" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restores" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "restores" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "restores" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restores" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "restores" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "restores" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restores" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restores" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restores" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restores" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restores" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "restores" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restores" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restores" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restores" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restores" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restores" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restores" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "restores" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restores" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "restores" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "restores" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restores" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restores" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restores" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "restores" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "restores" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "restores" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "restores" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restores" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "restores" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restores" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "restores" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "restores" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "restores" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restores" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "restores" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "restores" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "restores" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restores" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "restores" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restores" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "restores" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restores" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restores" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restores" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restores" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "restores" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restores" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restores" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restores" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restores" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "restores" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restores" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "restores" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "restores" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restores" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restores" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restores" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "restores" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "restores" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "restores" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "restores" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restores" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "restores" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restores" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "restores" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "restores" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restores" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "restores" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restores" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restores" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "restores" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "restores" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restores" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "restores" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restores" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restores" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "restores" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "restores" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "restores" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restores" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restores" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "restores" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "restores" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restores" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restores" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "restores" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restores" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "restores" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restores" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restores" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "restores" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "restores" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restores" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "restores" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "restores" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restores" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "restores" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restores" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restores" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restores" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "restores" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "restores" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restores" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "restores" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restores" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "restores" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "restores" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "restores" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restores" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "restores" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "restores" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "restores" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "restores" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restores" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "restores" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restores" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "restores" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restores" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restores" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restores" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "restores" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "restores" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "restores" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "restores" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "restores" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "restores" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restores" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "restores" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "restores" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "restores" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "restores" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "restores" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restores" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "restores" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "restores" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "restores" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "restores" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "restores" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "restores" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "restores" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "restores" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "restores" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "restores" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "restores" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "restores" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "restores" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "restores" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "restores" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "restores" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "restores" + } + ], + "uuid": "dbda8fde-6305-5d3e-abe9-44ec7923332d", + "value": "Restore File" + }, + { + "description": "Organization mapping identifies and models the people, roles, and groups with an organization and the relations between them.", + "meta": { + "external_id": "D3-OM", + "kill_chain": [ + "Model:Operational-Activity-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:OrganizationMapping" + ] + }, + "uuid": "3098eddc-8716-535c-a459-21372b3d3ec1", + "value": "Organization Mapping" + }, + { + "description": "The process of temporarily disabling user accounts on a system or domain.", + "meta": { + "external_id": "D3-AL", + "kill_chain": [ + "Evict:Credential-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:AccountLocking" + ] + }, + "related": [ + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "disables" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "disables" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "disables" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "disables" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "disables" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "disables" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "disables" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "disables" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "disables" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "disables" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "disables" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "disables" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "disables" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "disables" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "disables" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "disables" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "disables" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "disables" + } + ], + "uuid": "4052a304-6e0c-5e59-b5f2-844d5a4e556d", + "value": "Account Locking" + }, + { + "description": "Configuring a kernel to use an allow or deny list to filter kernel api calls.", + "meta": { + "external_id": "D3-SCF", + "kill_chain": [ + "Isolate:Execution-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemCallFiltering" + ] + }, + "related": [ + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "391d824f-0ef1-47a0-b0ee-c59a75e27670", + "type": "filters" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "filters" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "filters" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "filters" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "filters" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "filters" + }, + { + "dest-uuid": "0259baeb-9f63-4c69-bf10-eb038c390688", + "type": "filters" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "filters" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "filters" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "filters" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "filters" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "filters" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "filters" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "filters" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "filters" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "filters" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "filters" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "filters" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "filters" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "filters" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "filters" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "filters" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "filters" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "filters" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "filters" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "filters" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "filters" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "filters" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "filters" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "filters" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "filters" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "filters" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "filters" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "filters" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "filters" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "filters" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "filters" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "filters" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "filters" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "filters" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "filters" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "filters" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "filters" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "7e150503-88e7-4861-866b-ff1ac82c4475", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "filters" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "filters" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "filters" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "filters" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "filters" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "filters" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "filters" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "filters" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "filters" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "filters" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "filters" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "filters" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "filters" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "filters" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "filters" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "filters" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "filters" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "filters" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "filters" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "filters" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "filters" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "filters" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "filters" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "filters" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "filters" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "filters" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "filters" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "filters" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "filters" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "filters" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "filters" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "filters" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "filters" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "filters" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "filters" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "7e150503-88e7-4861-866b-ff1ac82c4475", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "0259baeb-9f63-4c69-bf10-eb038c390688", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "filters" + }, + { + "dest-uuid": "391d824f-0ef1-47a0-b0ee-c59a75e27670", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "filters" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "filters" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "filters" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "filters" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "filters" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "filters" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "filters" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "filters" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "filters" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "filters" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "filters" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "filters" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "filters" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "filters" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "filters" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "filters" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "filters" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "filters" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "filters" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "filters" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "filters" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "filters" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "filters" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "filters" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "filters" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "filters" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "filters" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "filters" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "filters" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "filters" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "filters" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "filters" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "filters" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "filters" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "filters" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "filters" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "filters" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "filters" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "filters" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "filters" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "filters" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "filters" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "filters" + }, + { + "dest-uuid": "391d824f-0ef1-47a0-b0ee-c59a75e27670", + "type": "filters" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "filters" + }, + { + "dest-uuid": "7e150503-88e7-4861-866b-ff1ac82c4475", + "type": "filters" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "filters" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "filters" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "filters" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "filters" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "filters" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "filters" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "filters" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "filters" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "filters" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "filters" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "filters" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "filters" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "filters" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "filters" + }, + { + "dest-uuid": "0259baeb-9f63-4c69-bf10-eb038c390688", + "type": "filters" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "filters" + } + ], + "uuid": "54c5144f-e0da-5e35-bae8-0f25190fe9fb", + "value": "System Call Filtering" + }, + { + "description": "Employing file hash comparisons to detect known malware.", + "meta": { + "external_id": "D3-FH", + "kill_chain": [ + "Detect:File-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileHashing" + ] + }, + "uuid": "44eeb025-a766-5466-99c5-3d7b35da7cef", + "value": "File Hashing" + }, + { + "description": "Characterizing the reputation of mail transfer agents (MTA) to determine the security risk in emails.", + "meta": { + "external_id": "D3-SMRA", + "kill_chain": [ + "Detect:Message-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SenderMTAReputationAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + } + ], + "uuid": "2ba221f7-36e5-56b6-a8bf-474393f2d17d", + "value": "Sender MTA Reputation Analysis" + }, + { + "description": "Cryptographically verifying firmware integrity.", + "meta": { + "external_id": "D3-FV", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FirmwareVerification" + ] + }, + "related": [ + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "verifies" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "verifies" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "verifies" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "verifies" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "verifies" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "verifies" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "verifies" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "verifies" + }, + { + "dest-uuid": "791481f8-e96a-41be-b089-a088763083d4", + "type": "verifies" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "verifies" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "verifies" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "verifies" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "verifies" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "verifies" + } + ], + "uuid": "50cb8ffe-e413-5009-89a3-85ed3c23f98b", + "value": "Firmware Verification" + }, + { + "description": "Validates that a referenced exception handler pointer is a valid exception handler.", + "meta": { + "external_id": "D3-EHPV", + "kill_chain": [ + "Harden:Application-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ExceptionHandlerPointerValidation" + ], + "synonyms": [ + "Exception Handler Validation" + ] + }, + "uuid": "cca03b22-4c86-5f27-af13-d98a62989fce", + "value": "Exception Handler Pointer Validation" + }, + { + "description": "Detection of an unauthorized remote live terminal console session by examining network traffic to a network host.", + "meta": { + "external_id": "D3-RTSD", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RemoteTerminalSessionDetection" + ] + }, + "related": [ + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + } + ], + "uuid": "3e3e2630-f8e8-5ed2-b93e-97dacb8dec2f", + "value": "Remote Terminal Session Detection" + }, + { + "description": "Analyzing the amount of data transferred by a user.", + "meta": { + "external_id": "D3-UDTA", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:UserDataTransferAnalysis" + ] + }, + "uuid": "d0b7e3f9-64a6-566d-8a60-343c37365c14", + "value": "User Data Transfer Analysis" + }, + { + "description": "Collecting host certificates from network traffic or other passive sources like a certificate transparency log and analyzing them for unauthorized activity.", + "meta": { + "external_id": "D3-PCA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:PassiveCertificateAnalysis" + ] + }, + "uuid": "eb910451-3782-57e7-a944-c9c3f0ea20e7", + "value": "Passive Certificate Analysis" + }, + { + "description": "Preventing execution of any address in a memory region other than the code segment.", + "meta": { + "external_id": "D3-PSEP", + "kill_chain": [ + "Harden:Application-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProcessSegmentExecutionPrevention" + ], + "synonyms": [ + "Execute Disable", + "No Execute" + ] + }, + "related": [ + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "neutralizes" + }, + { + "dest-uuid": "4933e63b-9b77-476e-ab29-761bc5b7d15a", + "type": "neutralizes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "neutralizes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "neutralizes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "neutralizes" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "neutralizes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "neutralizes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "neutralizes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "neutralizes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "neutralizes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "neutralizes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "neutralizes" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "neutralizes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "neutralizes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "neutralizes" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "neutralizes" + }, + { + "dest-uuid": "4933e63b-9b77-476e-ab29-761bc5b7d15a", + "type": "neutralizes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "neutralizes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "neutralizes" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "neutralizes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "neutralizes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "neutralizes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "neutralizes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "neutralizes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "neutralizes" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "neutralizes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "neutralizes" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "neutralizes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "neutralizes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "neutralizes" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "neutralizes" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "neutralizes" + } + ], + "uuid": "c4ed798d-87da-5ad6-9473-bfca807cf7af", + "value": "Process Segment Execution Prevention" + }, + { + "description": "Deleting a set of credentials permanently to prevent them from being used to authenticate.", + "meta": { + "external_id": "D3-CR", + "kill_chain": [ + "Evict:Credential-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:CredentialRevoking" + ] + }, + "related": [ + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "deletes" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "deletes" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "deletes" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "deletes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "deletes" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "deletes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "deletes" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "deletes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "deletes" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "deletes" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "deletes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "deletes" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "deletes" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "deletes" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "deletes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "deletes" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "deletes" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "deletes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "deletes" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "deletes" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "deletes" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "deletes" + } + ], + "uuid": "1cb26037-3ff3-5121-bf6b-2905ecb69baa", + "value": "Credential Revoking" + }, + { + "description": "Access modeling identifies and records the access permissions granted to administrators, users, groups, and systems.", + "meta": { + "external_id": "D3-AM", + "kill_chain": [ + "Model:Operational-Activity-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:AccessModeling" + ] + }, + "related": [ + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + }, + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "maps" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "maps" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "maps" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "maps" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "maps" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "maps" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "maps" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "maps" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "maps" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "maps" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "maps" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "maps" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "maps" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "maps" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "maps" + } + ], + "uuid": "b595da0c-45da-5901-bb78-00fc6d977045", + "value": "Access Modeling" + }, + { + "description": "Ensuring the integrity of drivers loaded during initialization of the operating system.", + "meta": { + "external_id": "D3-DLIC", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DriverLoadIntegrityChecking" + ] + }, + "uuid": "07b40f59-fbd5-52ba-b0e2-f9411659dabe", + "value": "Driver Load Integrity Checking" + }, + { + "description": "Analyzing the reputation of a domain name.", + "meta": { + "external_id": "D3-DNRA", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DomainNameReputationAnalysis" + ] + }, + "uuid": "03dfb88e-364e-5c21-9d7d-59029e54c9c5", + "value": "Domain Name Reputation Analysis" + }, + { + "description": "Restricting system configuration modifications to a specific user or group of users.", + "meta": { + "external_id": "D3-SCP", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemConfigurationPermissions" + ] + }, + "related": [ + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "restricts" + }, + { + "dest-uuid": "c1b68a96-3c48-49ea-a6c0-9b27359f9c19", + "type": "restricts" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restricts" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restricts" + }, + { + "dest-uuid": "341e222a-a6e3-4f6f-b69c-831d792b1580", + "type": "restricts" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restricts" + }, + { + "dest-uuid": "57340c81-c025-4189-8fa0-fc7ede51bae4", + "type": "restricts" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restricts" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restricts" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restricts" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restricts" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restricts" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "restricts" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "dfebc3b7-d19d-450b-81c7-6dafe4184c04", + "type": "restricts" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restricts" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "restricts" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "restricts" + }, + { + "dest-uuid": "6d4a7fb3-5a24-42be-ae61-6728a2b581f6", + "type": "restricts" + }, + { + "dest-uuid": "57340c81-c025-4189-8fa0-fc7ede51bae4", + "type": "restricts" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restricts" + }, + { + "dest-uuid": "ffbcfdb0-de22-4106-9ed3-fc23c8a01407", + "type": "restricts" + }, + { + "dest-uuid": "341e222a-a6e3-4f6f-b69c-831d792b1580", + "type": "restricts" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restricts" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "restricts" + }, + { + "dest-uuid": "34f1d81d-fe88-4f97-bd3b-a3164536255d", + "type": "restricts" + }, + { + "dest-uuid": "2959d63f-73fd-46a1-abd2-109d7dcede32", + "type": "restricts" + }, + { + "dest-uuid": "c1b68a96-3c48-49ea-a6c0-9b27359f9c19", + "type": "restricts" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "restricts" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "restricts" + } + ], + "uuid": "ac54cd72-5a21-5025-95fb-39b096f0ee0f", + "value": "System Configuration Permissions" + }, + { + "description": "Detecting any suspicious changes to files in a computer system.", + "meta": { + "external_id": "D3-FIM", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileIntegrityMonitoring" + ] + }, + "related": [ + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "analyzes" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "analyzes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "analyzes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "analyzes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "analyzes" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "analyzes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "analyzes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "analyzes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "analyzes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "analyzes" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "analyzes" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "analyzes" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "analyzes" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "analyzes" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "analyzes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "analyzes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "analyzes" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "1cfcb312-b8d7-47a4-b560-4b16cc677292", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + }, + { + "dest-uuid": "8187bd2a-866f-4457-9009-86b0ddedffa3", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "analyzes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "8faedf87-dceb-4c35-b2a2-7286f59a3bc3", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "analyzes" + }, + { + "dest-uuid": "e51137a5-1cdc-499e-911a-abaedaa5ac86", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "c92e3d68-2349-49e4-a341-7edca2deff96", + "type": "analyzes" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "3fc9b85a-2862-4363-a64d-d692e3ffbee0", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "3c4a2599-71ee-4405-ba1e-0e28414b4bc5", + "type": "analyzes" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "6747daa2-3533-4e78-8fb8-446ebb86448a", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + }, + { + "dest-uuid": "837f9164-50af-4ac0-8219-379d8a74cefc", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "2bce5b30-7014-4a5d-ade7-12913fe6ac36", + "type": "analyzes" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "analyzes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "53ac20cd-aca3-406e-9aa0-9fc7fdc60a5a", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "analyzes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "ffeb0780-356e-4261-b036-cfb6bd234335", + "type": "analyzes" + }, + { + "dest-uuid": "41868330-6ee2-4d0f-b743-9f2294c3c9b6", + "type": "analyzes" + }, + { + "dest-uuid": "3120b9fa-23b8-4500-ae73-09494f607b7d", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "analyzes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "analyzes" + }, + { + "dest-uuid": "1365fe3b-0f50-455d-b4da-266ce31c23b0", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "143c0cbb-a297-4142-9624-87ffc778980b", + "type": "analyzes" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "analyzes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "00f90846-cbd1-4fc5-9233-df5c2bf2a662", + "type": "analyzes" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "analyzes" + }, + { + "dest-uuid": "d201d4cc-214d-4a74-a1ba-b3fa09fd4591", + "type": "analyzes" + }, + { + "dest-uuid": "633a100c-b2c9-41bf-9be5-905c1b16c825", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "30208d3e-0d6b-43c8-883e-44462a514619", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + }, + { + "dest-uuid": "d10cbd34-42e3-45c0-84d2-535a09849584", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "analyzes" + }, + { + "dest-uuid": "573ad264-1371-4ae0-8482-d2673b719dba", + "type": "analyzes" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "analyzes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "analyzes" + }, + { + "dest-uuid": "9c45eaa3-8604-4780-8988-b5074dbb9ecd", + "type": "analyzes" + }, + { + "dest-uuid": "7bc57495-ea59-4380-be31-a64af124ef18", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "d63a3fb8-9452-4e9d-a60a-54be68d5998c", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "06c00069-771a-4d57-8ef5-d3718c1a8771", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "3731fbcd-0e43-47ae-ae6c-d15e510f0d42", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "2fee9321-3e71-4cf4-af24-d4d40d355b34", + "type": "analyzes" + }, + { + "dest-uuid": "f0589bc3-a6ae-425a-a3d5-5659bfee07f4", + "type": "analyzes" + }, + { + "dest-uuid": "a1b52199-c8c5-438a-9ded-656f1d0888c6", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "0f20e3cb-245b-4a61-8a91-2d93f7cb0e9b", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "cbb66055-0325-4111-aca0-40547b6ad5b0", + "type": "analyzes" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "e5cc9e7a-e61a-46a1-b869-55fb6eab058e", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "dfefe2ed-4389-4318-8762-f0272b350a1b", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "806a49c4-970d-43f9-9acc-ac0ee11e6662", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "analyzes" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "analyzes" + }, + { + "dest-uuid": "fc742192-19e3-466c-9eb5-964a97b29490", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "e64c62cf-9cd7-4a14-94ec-cdaac43ab44b", + "type": "analyzes" + }, + { + "dest-uuid": "b77cf5f3-6060-475d-bd60-40ccbf28fdc2", + "type": "analyzes" + } + ], + "uuid": "a6c54822-7f49-5770-a99f-29af0d08bf31", + "value": "File Integrity Monitoring" + }, + { + "description": "Identifying and extracting files from network application protocols through the use of network stream reassembly software.", + "meta": { + "external_id": "D3-FC", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileCarving" + ] + }, + "related": [ + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + } + ], + "uuid": "622fc290-78ea-5b80-9676-afd844e30b56", + "value": "File Carving" + }, + { + "description": "Blocking the execution of files on a host in accordance with defined application policy rules.", + "meta": { + "external_id": "D3-EDL", + "kill_chain": [ + "Isolate:Execution-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ExecutableDenylisting" + ], + "synonyms": [ + "Executable Blacklisting" + ] + }, + "related": [ + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "blocks" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "blocks" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "blocks" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "blocks" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "blocks" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "blocks" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "blocks" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "blocks" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "blocks" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "blocks" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "blocks" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "blocks" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "blocks" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "blocks" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "blocks" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "blocks" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "blocks" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "blocks" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + } + ], + "uuid": "4cfdeb35-2f05-591c-b28c-c41a7ce4e520", + "value": "Executable Denylisting" + }, + { + "description": "A decoy service, system, or environment, that is connected to the enterprise network, and simulates or emulates certain functionality to the network, without exposing full access to a production system.", + "meta": { + "external_id": "D3-CHN", + "kill_chain": [ + "Deceive:Decoy-Environment" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ConnectedHoneynet" + ] + }, + "uuid": "8dfb525b-bbe8-5092-86b2-4e00969bb712", + "value": "Connected Honeynet" + }, + { + "description": "Restricting a user account's access to resources.", + "meta": { + "external_id": "D3-UAP", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:UserAccountPermissions" + ] + }, + "related": [ + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restricts" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restricts" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restricts" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restricts" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restricts" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restricts" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restricts" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restricts" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "restricts" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "restricts" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restricts" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restricts" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restricts" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restricts" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restricts" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "restricts" + } + ], + "uuid": "5da33a29-c3a3-5235-80b7-58cbf01da3a5", + "value": "User Account Permissions" + }, + { + "description": "Comparing the \"text\" or \"code\" memory segments to a source of truth.", + "meta": { + "external_id": "D3-PCSV", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProcessCodeSegmentVerification" + ] + }, + "related": [ + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "verifies" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "verifies" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "verifies" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "verifies" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "verifies" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "verifies" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "verifies" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "verifies" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "verifies" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "verifies" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "verifies" + }, + { + "dest-uuid": "be2dcee9-a7a7-4e38-afd6-21b31ecc3d63", + "type": "verifies" + }, + { + "dest-uuid": "f5946b5e-9408-485f-a7f7-b5efc88909b6", + "type": "verifies" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "verifies" + }, + { + "dest-uuid": "fe926152-f431-4baf-956c-4ad3cb0bf23b", + "type": "verifies" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "verifies" + }, + { + "dest-uuid": "b21c3b2d-02e6-45b1-980b-e69051040839", + "type": "verifies" + }, + { + "dest-uuid": "b200542e-e877-4395-875b-cf1a44537ca4", + "type": "verifies" + } + ], + "uuid": "fbab09d5-0032-5dff-8122-6afeddab8cff", + "value": "Process Code Segment Verification" + }, + { + "description": "Persisting either a server's X.509 certificate or their public key and comparing that to server's presented identity to allow for greater client confidence in the remote server's identity for SSL connections.", + "meta": { + "external_id": "D3-CP", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:CertificatePinning" + ] + }, + "uuid": "2a4d2791-e193-57af-a4c1-b6f1409a8ebd", + "value": "Certificate Pinning" + }, + { + "description": "Permitting only approved domains and their subdomains to be resolved.", + "meta": { + "external_id": "D3-DNSAL", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DNSAllowlisting" + ], + "synonyms": [ + "DNS Whitelisting" + ] + }, + "related": [ + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + } + ], + "uuid": "99a2e93d-e41a-552c-b32a-7ed9820a9126", + "value": "DNS Allowlisting" + }, + { + "description": "The practice of setting decoys in a production environment to entice interaction from attackers.", + "meta": { + "external_id": "D3-IHN", + "kill_chain": [ + "Deceive:Decoy-Environment" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:IntegratedHoneynet" + ] + }, + "uuid": "2cf6eef1-6a36-59bc-8157-2d825e35b90d", + "value": "Integrated Honeynet" + }, + { + "description": "Adding physical barriers to a platform to prevent undesired radio interference.", + "meta": { + "external_id": "D3-RFS", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RFShielding" + ] + }, + "uuid": "e9ae72b7-3c4d-5680-8112-532cca3ed550", + "value": "RF Shielding" + }, + { + "description": "Analyzing system calls to determine whether a process is exhibiting unauthorized behavior.", + "meta": { + "external_id": "D3-SCA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemCallAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "analyzes" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "analyzes" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "analyzes" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "analyzes" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "analyzes" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "analyzes" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "analyzes" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "analyzes" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "analyzes" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "analyzes" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "0259baeb-9f63-4c69-bf10-eb038c390688", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "analyzes" + }, + { + "dest-uuid": "7e150503-88e7-4861-866b-ff1ac82c4475", + "type": "analyzes" + }, + { + "dest-uuid": "391d824f-0ef1-47a0-b0ee-c59a75e27670", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "391d824f-0ef1-47a0-b0ee-c59a75e27670", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "analyzes" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "analyzes" + }, + { + "dest-uuid": "c32f7008-9fea-41f7-8366-5eb9b74bd896", + "type": "analyzes" + }, + { + "dest-uuid": "1c4e5d32-1fe9-4116-9d9d-59e3925bd6a2", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "7e150503-88e7-4861-866b-ff1ac82c4475", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "analyzes" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "analyzes" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "analyzes" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "analyzes" + }, + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "analyzes" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "e49ee9d2-0d98-44ef-85e5-5d3100065744", + "type": "analyzes" + }, + { + "dest-uuid": "ea016b56-ae0e-47fe-967a-cc0ad51af67f", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "analyzes" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "analyzes" + }, + { + "dest-uuid": "cba37adb-d6fb-4610-b069-dd04c0643384", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "98be40f2-c86b-4ade-b6fc-4964932040e5", + "type": "analyzes" + }, + { + "dest-uuid": "b84903f0-c7d5-435d-a69e-de47cc3578c0", + "type": "analyzes" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "analyzes" + }, + { + "dest-uuid": "f4599aa0-4f85-4a32-80ea-fc39dc965945", + "type": "analyzes" + }, + { + "dest-uuid": "4bed873f-0b7d-41d4-b93a-b6905d1f90b0", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "58a3e6aa-4453-4cc8-a51f-4befe80b31a8", + "type": "analyzes" + }, + { + "dest-uuid": "0259baeb-9f63-4c69-bf10-eb038c390688", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "1bae753e-8e52-4055-a66d-2ead90303ca9", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + } + ], + "uuid": "8efc9cbd-0353-5a6f-8b9b-dcc72a91e8cd", + "value": "System Call Analysis" + }, + { + "description": "Cryptographically verifying peripheral firmware integrity.", + "meta": { + "external_id": "D3-PFV", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:PeripheralFirmwareVerification" + ] + }, + "uuid": "1712071c-f306-54a3-8d20-092ec6649003", + "value": "Peripheral Firmware Verification" + }, + { + "description": "Network traffic policy mapping identifies and models the allowed pathways of data at the network, tranport, and/or application levels.", + "meta": { + "external_id": "D3-NTPM", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:NetworkTrafficPolicyMapping" + ], + "synonyms": [ + "DLP Policy Mapping", + "Firewall Mapping", + "IPS Policy Mapping", + "Web Security Gateway Policy Mapping" + ] + }, + "related": [ + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "maps" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "maps" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + }, + { + "dest-uuid": "1b20efbf-8063-4fc3-a07d-b575318a301b", + "type": "maps" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + }, + { + "dest-uuid": "65917ae0-b854-4139-83fe-bf2441cf0196", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "6831414d-bb70-42b7-8030-d4e06b2660c9", + "type": "maps" + }, + { + "dest-uuid": "8d7bd4f5-3a89-4453-9c82-2c8894d5655e", + "type": "maps" + }, + { + "dest-uuid": "ebb42bbe-62d7-47d7-a55f-3b08b61d792d", + "type": "maps" + }, + { + "dest-uuid": "b7dc639b-24cd-482d-a7f1-8897eda21023", + "type": "maps" + } + ], + "uuid": "19aec027-51a7-55de-a2c9-33a8cd40802e", + "value": "Network Traffic Policy Mapping" + }, + { + "description": "Analyzing the reputation of an IP address.", + "meta": { + "external_id": "D3-IPRA", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:IPReputationAnalysis" + ] + }, + "uuid": "674fc229-ea1b-5a79-8a8c-445ed579d634", + "value": "IP Reputation Analysis" + }, + { + "description": "Blocking a reverse DNS lookup's answer's domain name value.", + "meta": { + "external_id": "D3-RRDD", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ReverseResolutionDomainDenylisting" + ], + "synonyms": [ + "Reverse Resolution Domain Blacklisting" + ] + }, + "uuid": "0f4c7202-d19e-5fef-ae15-e82e14d4337a", + "value": "Reverse Resolution Domain Denylisting" + }, + { + "description": "Using a digital signature to authenticate a file before opening.", + "meta": { + "external_id": "D3-EAL", + "kill_chain": [ + "Isolate:Execution-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ExecutableAllowlisting" + ], + "synonyms": [ + "File Signature Authentication" + ] + }, + "related": [ + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "blocks" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "blocks" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "blocks" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "blocks" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "blocks" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "blocks" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "blocks" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "blocks" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "blocks" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "blocks" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "blocks" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "blocks" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "blocks" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "blocks" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "blocks" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "blocks" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "blocks" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "blocks" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "blocks" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "blocks" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "blocks" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "blocks" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "blocks" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "blocks" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "blocks" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "blocks" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "blocks" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "blocks" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "blocks" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "blocks" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "blocks" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "blocks" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "blocks" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "blocks" + } + ], + "uuid": "bf384e38-6fa5-5159-b729-c8bb3af47fe6", + "value": "Executable Allowlisting" + }, + { + "description": "A Credential created for the purpose of deceiving an adversary.", + "meta": { + "external_id": "D3-DUC", + "kill_chain": [ + "Deceive:Decoy-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DecoyUserCredential" + ] + }, + "related": [ + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "spoofs" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "spoofs" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "spoofs" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "spoofs" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "spoofs" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "spoofs" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "spoofs" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "spoofs" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "spoofs" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "spoofs" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "spoofs" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "spoofs" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "spoofs" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "spoofs" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "spoofs" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "spoofs" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "spoofs" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "spoofs" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "spoofs" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "spoofs" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "spoofs" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "spoofs" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "spoofs" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "spoofs" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "spoofs" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "spoofs" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "spoofs" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "spoofs" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "spoofs" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "spoofs" + } + ], + "uuid": "9a7bed7b-0baa-5232-b24f-de436702894d", + "value": "Decoy User Credential" + }, + { + "description": "Active physical link mapping sends and receives network traffic as a means to map the physical layer.", + "meta": { + "external_id": "D3-APLM", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ActivePhysicalLinkMapping" + ], + "synonyms": [ + "Active Physical Layer Mapping" + ] + }, + "uuid": "f8cda405-1809-5fad-943f-ce794c67c2d6", + "value": "Active Physical Link Mapping" + }, + { + "description": "Tracking changes to the state or configuration of critical system level processes.", + "meta": { + "external_id": "D3-SDM", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemDaemonMonitoring" + ] + }, + "related": [ + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "monitors" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "monitors" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "monitors" + } + ], + "uuid": "be40547e-6646-5d8c-8064-f083a8791ec7", + "value": "System Daemon Monitoring" + }, + { + "description": "Determining if a URL is benign or malicious by analyzing the URL or its components.", + "meta": { + "external_id": "D3-UA", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:URLAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + } + ], + "uuid": "5c24a72a-e61a-51e9-b6e5-911755b32ee0", + "value": "URL Analysis" + }, + { + "description": "Actively collecting PKI certificates by connecting to the server and downloading its server certificates for analysis.", + "meta": { + "external_id": "D3-ACA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ActiveCertificateAnalysis" + ] + }, + "uuid": "a0c35dda-500c-5845-a6a1-5de02df3bed6", + "value": "Active Certificate Analysis" + }, + { + "description": "Analyzing modifications to user session config files such as .bashrc or .bash_profile.", + "meta": { + "external_id": "D3-USICA", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:UserSessionInitConfigAnalysis" + ], + "synonyms": [ + "User Startup Config Analysis" + ] + }, + "related": [ + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "b63a34e8-0a61-4c97-a23b-bf8a2ed812e2", + "type": "analyzes" + }, + { + "dest-uuid": "8c4aef43-48d5-49aa-b2af-c0cd58d30c3d", + "type": "analyzes" + } + ], + "uuid": "a15581c3-dacb-513e-a7bc-54f76a4b2554", + "value": "User Session Init Config Analysis" + }, + { + "description": "Emulating instructions in a file looking for specific patterns.", + "meta": { + "external_id": "D3-EFA", + "kill_chain": [ + "Detect:File-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:EmulatedFileAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + }, + { + "dest-uuid": "c898c4b5-bf36-4e6e-a4ad-5b8c4c13e35b", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "7385dfaf-6886-4229-9ecd-6fd678040830", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "c63a348e-ffc2-486a-b9d9-d7f11ec54d99", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "5bfccc3f-2326-4112-86cc-c1ece9d8a2b5", + "type": "analyzes" + }, + { + "dest-uuid": "bd5b58a4-a52d-4a29-bc0d-3f1d3968eb6b", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + }, + { + "dest-uuid": "4ab929c6-ee2d-4fb5-aab4-b14be2ed7179", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "10ff21b9-5a01-4268-a1b5-3b55015f1847", + "type": "analyzes" + }, + { + "dest-uuid": "b4b7458f-81f2-4d38-84be-1c5ba0167a52", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "bf96a5a3-3bce-43b7-8597-88545984c07b", + "type": "analyzes" + }, + { + "dest-uuid": "41d9846c-f6af-4302-a654-24bba2729bc6", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "a9e2cea0-c805-4bf8-9e31-f5f0513a3634", + "type": "analyzes" + }, + { + "dest-uuid": "58af3705-8740-4c68-9329-ec015a7013c2", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "32ad5c86-2bcf-47d8-8fdc-d7f3d79a7490", + "type": "analyzes" + }, + { + "dest-uuid": "0c2d00da-7742-49e7-9928-4514e5075d32", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "ce4b7013-640e-48a9-b501-d0025a95f4bf", + "type": "analyzes" + }, + { + "dest-uuid": "deb98323-e13f-4b0c-8d94-175379069062", + "type": "analyzes" + }, + { + "dest-uuid": "43ba2b05-cf72-4b6c-8243-03a4aba41ee0", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "eb125d40-0b2d-41ac-a71a-3229241c2cd3", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "c726e0a2-a57a-4b7b-a973-d0f013246617", + "type": "analyzes" + }, + { + "dest-uuid": "0f2c410d-d740-4ed9-abb1-b8f4a7faf6c3", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "232b7f21-adf9-4b42-b936-b9d6f7df856e", + "type": "analyzes" + }, + { + "dest-uuid": "79a47ad0-fc3b-4821-9f01-a026b1ddba21", + "type": "analyzes" + }, + { + "dest-uuid": "63220765-d418-44de-8fae-694b3912317d", + "type": "analyzes" + }, + { + "dest-uuid": "8f504411-cb96-4dac-a537-8d2bb7679c59", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "bc0f5e80-91c0-4e04-9fbb-e4e332c85dae", + "type": "analyzes" + } + ], + "uuid": "66fe2000-adca-5925-ba07-730a792bf17d", + "value": "Emulated File Analysis" + }, + { + "description": "Comparing strings using a variety of techniques to determine if a deceptive or malicious string is being presented to a user.", + "meta": { + "external_id": "D3-HD", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:HomoglyphDetection" + ] + }, + "related": [ + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + } + ], + "uuid": "1d230cb4-3f98-5241-95df-90a76583cfac", + "value": "Homoglyph Detection" + }, + { + "description": "Comparing the cryptographic hash or derivative of a pointer's value to an expected value.", + "meta": { + "external_id": "D3-PAN", + "kill_chain": [ + "Harden:Application-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:PointerAuthentication" + ] + }, + "uuid": "122f35a5-4f26-5e24-aa9e-51ba21f2d11c", + "value": "Pointer Authentication" + }, + { + "description": "Cryptographically authenticating the bootloader software before system boot.", + "meta": { + "external_id": "D3-BA", + "kill_chain": [ + "Harden:Platform-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:BootloaderAuthentication" + ], + "synonyms": [ + "Secure Boot" + ] + }, + "related": [ + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "authenticates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "authenticates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "authenticates" + }, + { + "dest-uuid": "1b7b1806-7746-41a1-a35d-e48dae25ddba", + "type": "authenticates" + } + ], + "uuid": "a534994d-125d-549d-bbd5-20f31a2eee6c", + "value": "Bootloader Authentication" + }, + { + "description": "Restoring an email for an entity to access.", + "meta": { + "external_id": "D3-RE", + "kill_chain": [ + "Restore:Restore-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreEmail" + ] + }, + "related": [ + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "restores" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "restores" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "restores" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "restores" + } + ], + "uuid": "680e813d-2f92-56a8-8b40-2982242b2ae7", + "value": "Restore Email" + }, + { + "description": "Broadcast isolation restricts the number of computers a host can contact on their LAN.", + "meta": { + "external_id": "D3-BDI", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:BroadcastDomainIsolation" + ], + "synonyms": [ + "Network Segmentation" + ] + }, + "uuid": "a7b7017a-6daa-564d-8b25-ed571952d0c0", + "value": "Broadcast Domain Isolation" + }, + { + "description": "Limiting the transmission of a credential to a scoped set of relying parties.", + "meta": { + "external_id": "D3-CTS", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:CredentialTransmissionScoping" + ], + "synonyms": [ + "Phishing Resistant Authentication" + ] + }, + "related": [ + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "restricts" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restricts" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restricts" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restricts" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "restricts" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "restricts" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "restricts" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restricts" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restricts" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "restricts" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "restricts" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restricts" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restricts" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restricts" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restricts" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restricts" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "restricts" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restricts" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restricts" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "restricts" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "restricts" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "restricts" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restricts" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "restricts" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restricts" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restricts" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restricts" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "restricts" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restricts" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "restricts" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "restricts" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restricts" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "restricts" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "restricts" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "restricts" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restricts" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "restricts" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "restricts" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restricts" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restricts" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restricts" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restricts" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restricts" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "restricts" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "restricts" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restricts" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "restricts" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restricts" + } + ], + "uuid": "1bb2497c-12e1-5547-8cd8-1ef510275ba1", + "value": "Credential Transmission Scoping" + }, + { + "description": "Suspending a running process on a computer system.", + "meta": { + "external_id": "D3-PS", + "kill_chain": [ + "Evict:Process-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProcessSuspension" + ] + }, + "related": [ + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "suspends" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "suspends" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "suspends" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "suspends" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "suspends" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "suspends" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "suspends" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "suspends" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "suspends" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "suspends" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "suspends" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "suspends" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "suspends" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "suspends" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "suspends" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "suspends" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "suspends" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "suspends" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "suspends" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "suspends" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "suspends" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "suspends" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "suspends" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "suspends" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "suspends" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "suspends" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "suspends" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "suspends" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "suspends" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "suspends" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "suspends" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "suspends" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "suspends" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "suspends" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "suspends" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "suspends" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "suspends" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "suspends" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "suspends" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "suspends" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "suspends" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "suspends" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "suspends" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "suspends" + } + ], + "uuid": "c7271e9f-f0e6-5e03-bb4d-c02e65a5e3b2", + "value": "Process Suspension" + }, + { + "description": "Monitoring the existence of or changes to Domain User Accounts.", + "meta": { + "external_id": "D3-DAM", + "kill_chain": [ + "Detect:User-Behavior-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DomainAccountMonitoring" + ] + }, + "related": [ + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "monitors" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "monitors" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "monitors" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "monitors" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "monitors" + } + ], + "uuid": "c899ef50-74bd-5ba7-a5ad-27d357e78f1b", + "value": "Domain Account Monitoring" + }, + { + "description": "Analyzing the reputation of a URL.", + "meta": { + "external_id": "D3-URA", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:URLReputationAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "f6ad61ee-65f3-4bd0-a3f5-2f0accb36317", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + } + ], + "uuid": "9d0e3d9e-4219-511d-9a0c-3df08dded6c0", + "value": "URL Reputation Analysis" + }, + { + "description": "Authenticating the sender of a message and ensuring message integrity.", + "meta": { + "external_id": "D3-MAN", + "kill_chain": [ + "Harden:Message-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:MessageAuthentication" + ] + }, + "uuid": "6724076f-3bc2-5da7-870f-bc4688051091", + "value": "Message Authentication" + }, + { + "description": "Validating that server components of a messaging infrastructure are authorized to send a particular message.", + "meta": { + "external_id": "D3-TAAN", + "kill_chain": [ + "Harden:Message-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:TransferAgentAuthentication" + ] + }, + "uuid": "0ff8bb88-a078-55fd-a42d-7da9fdcd52b7", + "value": "Transfer Agent Authentication" + }, + { + "description": "Restricting network traffic originating from any location.", + "meta": { + "external_id": "D3-NTF", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:NetworkTrafficFiltering" + ] + }, + "related": [ + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "filters" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "filters" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "filters" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "filters" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "filters" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "filters" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "filters" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "filters" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "filters" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "filters" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "filters" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "filters" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "filters" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "filters" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "filters" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "filters" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "filters" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "filters" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "filters" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "filters" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "filters" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "filters" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "filters" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "filters" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "filters" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "filters" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "filters" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "filters" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "filters" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "filters" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "filters" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "filters" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "filters" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "filters" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "filters" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "filters" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "filters" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "filters" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "filters" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "filters" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "filters" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "filters" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "filters" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "filters" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "filters" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "filters" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "filters" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "filters" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "filters" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "filters" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "filters" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "filters" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "filters" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "filters" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "filters" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "filters" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "filters" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "filters" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "filters" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "filters" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "filters" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "filters" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "filters" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "filters" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "filters" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "filters" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "filters" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "filters" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "filters" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "filters" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "filters" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "filters" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "filters" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "filters" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "filters" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "filters" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "filters" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "filters" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "filters" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "filters" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "filters" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "filters" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "filters" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "filters" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "filters" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "filters" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "filters" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "filters" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "filters" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "filters" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "filters" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "filters" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "filters" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "filters" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "filters" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "filters" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "filters" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "filters" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "filters" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "filters" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "filters" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "filters" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "filters" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "filters" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "filters" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "filters" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "filters" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "filters" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "filters" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "filters" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "filters" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "filters" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "filters" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "filters" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "filters" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "filters" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "filters" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "filters" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "filters" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "filters" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "filters" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "filters" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "filters" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "filters" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "filters" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "filters" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "filters" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "filters" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "filters" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "filters" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "filters" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "filters" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "filters" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "filters" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "filters" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "filters" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "filters" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "filters" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "filters" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "filters" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "filters" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "filters" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "filters" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "filters" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "filters" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "filters" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "filters" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "filters" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "filters" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "filters" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "filters" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "filters" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "filters" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "filters" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "filters" + } + ], + "uuid": "b1c0b6bb-deac-54d4-8a62-4bc57702fd28", + "value": "Network Traffic Filtering" + }, + { + "description": "Using biological measures in order to authenticate a user.", + "meta": { + "external_id": "D3-BAN", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:BiometricAuthentication" + ] + }, + "related": [ + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "authenticates" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + } + ], + "uuid": "0cf84afc-e9a9-52a8-9a64-1146ed86e0c4", + "value": "Biometric Authentication" + }, + { + "description": "Analyzing the reputation of a file hash.", + "meta": { + "external_id": "D3-FHRA", + "kill_chain": [ + "Detect:Identifier-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileHashReputationAnalysis" + ] + }, + "uuid": "f0b15269-e543-5202-b9d7-cfd6621ba2a2", + "value": "File Hash Reputation Analysis" + }, + { + "description": "Collecting network communication protocol metadata and identifying statistical outliers.", + "meta": { + "external_id": "D3-PMAD", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProtocolMetadataAnomalyDetection" + ] + }, + "related": [ + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "51ea26b1-ff1e-4faa-b1a0-1114cd298c87", + "type": "analyzes" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "analyzes" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "544b0346-29ad-41e1-a808-501bb4193f47", + "type": "analyzes" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "035bb001-ab69-4a0b-9f6c-2de8b09e1b9d", + "type": "analyzes" + }, + { + "dest-uuid": "4eeaf8a9-c86b-4954-a663-9555fb406466", + "type": "analyzes" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "analyzes" + }, + { + "dest-uuid": "9db0cf3a-a3c9-4012-8268-123b9db6fd82", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "analyzes" + }, + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "analyzes" + }, + { + "dest-uuid": "c3888c54-775d-4b2f-b759-75a2ececcbfd", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "2db31dcd-54da-405d-acef-b9129b816ed6", + "type": "analyzes" + }, + { + "dest-uuid": "5b0ad6f8-6a16-4966-a4ef-d09ea6e2a9f5", + "type": "analyzes" + }, + { + "dest-uuid": "eb062747-2193-45de-8fa2-e62549c37ddf", + "type": "analyzes" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "analyzes" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "analyzes" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "analyzes" + }, + { + "dest-uuid": "f6dacc85-b37d-458e-b58d-74fc4bbf5755", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "10d51417-ee35-4589-b1ff-b6df1c334e8d", + "type": "analyzes" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "analyzes" + }, + { + "dest-uuid": "a19e86f8-1c0a-4fea-8407-23b73d615776", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "bf90d72c-c00b-45e3-b3aa-68560560d4c5", + "type": "analyzes" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "analyzes" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "analyzes" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "analyzes" + }, + { + "dest-uuid": "54a649ff-439a-41a4-9856-8d144a2551ba", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "8868cb5b-d575-4a60-acb2-07d37389a2fd", + "type": "analyzes" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "analyzes" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "analyzes" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "analyzes" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "analyzes" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "analyzes" + }, + { + "dest-uuid": "d0613359-5781-4fd2-b5be-c269270be1f6", + "type": "analyzes" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "analyzes" + }, + { + "dest-uuid": "28abec6c-4443-4b03-8206-07f2e264a6b4", + "type": "analyzes" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "451a9977-d255-43c9-b431-66de80130c8c", + "type": "analyzes" + }, + { + "dest-uuid": "650c784b-7504-4df7-ab2c-4ea882384d1e", + "type": "analyzes" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "analyzes" + }, + { + "dest-uuid": "774a3188-6ba9-4dc4-879d-d54ee48a5ce9", + "type": "analyzes" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "analyzes" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "analyzes" + }, + { + "dest-uuid": "f2877f7f-9a4c-4251-879f-1224e3006bee", + "type": "analyzes" + }, + { + "dest-uuid": "9fa07bef-9c81-421e-a8e5-ad4366c5a925", + "type": "analyzes" + }, + { + "dest-uuid": "59ff91cd-1430-4075-8563-e6f15f4f9ff5", + "type": "analyzes" + }, + { + "dest-uuid": "92d7da27-2d91-488e-a00c-059dc162766d", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "analyzes" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "analyzes" + } + ], + "uuid": "c0fa4b60-cc10-5b50-8eb3-4a26752852f2", + "value": "Protocol Metadata Anomaly Detection" + }, + { + "description": "Analyzing spawn arguments or attributes of a process to detect processes that are unauthorized.", + "meta": { + "external_id": "D3-PSA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProcessSpawnAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "analyzes" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "analyzes" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "analyzes" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "analyzes" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "analyzes" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "analyzes" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "analyzes" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "analyzes" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "analyzes" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "analyzes" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "analyzes" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "analyzes" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "analyzes" + } + ], + "uuid": "b1cfe58d-38df-5fcd-bb68-b832d15a395f", + "value": "Process Spawn Analysis" + }, + { + "description": "Requiring proof of two or more pieces of evidence in order to authenticate a user.", + "meta": { + "external_id": "D3-MFA", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:Multi-factorAuthentication" + ] + }, + "related": [ + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "authenticates" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + } + ], + "uuid": "f0b9dd4e-6891-54be-bfd8-2d9cff119944", + "value": "Multi-factor Authentication" + }, + { + "description": "Issuing publicly released media to deceive adversaries.", + "meta": { + "external_id": "D3-DPR", + "kill_chain": [ + "Deceive:Decoy-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DecoyPublicRelease" + ] + }, + "uuid": "cf471e91-4537-54b6-b0f7-0ad331543361", + "value": "Decoy Public Release" + }, + { + "description": "Detection of unauthorized use of administrative network protocols by analyzing network activity against a baseline.", + "meta": { + "external_id": "D3-ANAA", + "kill_chain": [ + "Detect:Network-Traffic-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:AdministrativeNetworkActivityAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + }, + { + "dest-uuid": "564998d8-ab3e-4123-93fb-eccaa6b9714a", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "analyzes" + }, + { + "dest-uuid": "b2d03cea-aec1-45ca-9744-9ee583c1e1cc", + "type": "analyzes" + }, + { + "dest-uuid": "f303a39a-6255-4b89-aecc-18c4d8ca7163", + "type": "analyzes" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "analyzes" + }, + { + "dest-uuid": "70e52b04-2a0c-4cea-9d18-7149f1df9dc5", + "type": "analyzes" + }, + { + "dest-uuid": "910906dd-8c0a-475a-9cc1-5e029e2fad58", + "type": "analyzes" + } + ], + "uuid": "bbb6dd55-5a7c-576e-8230-8b1b30a0abd7", + "value": "Administrative Network Activity Analysis" + }, + { + "description": "Restoring a user account's access to resources.", + "meta": { + "external_id": "D3-RUAA", + "kill_chain": [ + "Restore:Restore-Access" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:RestoreUserAccountAccess" + ] + }, + "related": [ + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + } + ], + "uuid": "75f4788e-dfce-5ef5-b3f5-cb034a7571db", + "value": "Restore User Account Access" + }, + { + "description": "Blocking a reverse lookup based on the query's IP address value.", + "meta": { + "external_id": "D3-RRID", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ReverseResolutionIPDenylisting" + ], + "synonyms": [ + "Reverse Resolution IP Blacklisting" + ] + }, + "related": [ + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "blocks" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "blocks" + } + ], + "uuid": "73e18f53-e95a-5309-b6c5-7d51879d394f", + "value": "Reverse Resolution IP Denylisting" + }, + { + "description": "Operating system level mechanisms to prevent abusive input device exploitation.", + "meta": { + "external_id": "D3-IDA", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:InputDeviceAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "analyzes" + }, + { + "dest-uuid": "1035cdf2-3e5f-446f-a7a7-e8f6d7925967", + "type": "analyzes" + }, + { + "dest-uuid": "6faf650d-bf31-4eb4-802d-1000cf38efaf", + "type": "analyzes" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "analyzes" + }, + { + "dest-uuid": "1035cdf2-3e5f-446f-a7a7-e8f6d7925967", + "type": "analyzes" + }, + { + "dest-uuid": "6faf650d-bf31-4eb4-802d-1000cf38efaf", + "type": "analyzes" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "analyzes" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "analyzes" + }, + { + "dest-uuid": "1035cdf2-3e5f-446f-a7a7-e8f6d7925967", + "type": "analyzes" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "analyzes" + }, + { + "dest-uuid": "6faf650d-bf31-4eb4-802d-1000cf38efaf", + "type": "analyzes" + }, + { + "dest-uuid": "09a60ea3-a8d1-4ae5-976e-5783248b72a4", + "type": "analyzes" + } + ], + "uuid": "fdc3fedb-3a22-5b75-b342-b2e7a4346349", + "value": "Input Device Analysis" + }, + { + "description": "Issue a new credential to a user which supercedes their old credential.", + "meta": { + "external_id": "D3-RIC", + "kill_chain": [ + "Restore:Restore-Object" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ReissueCredential" + ] + }, + "related": [ + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "restores" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restores" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restores" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restores" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "restores" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "restores" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restores" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "restores" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restores" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "restores" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "restores" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restores" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restores" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "restores" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "restores" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "restores" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restores" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restores" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restores" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "restores" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restores" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restores" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restores" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "restores" + }, + { + "dest-uuid": "6add2ab5-2711-4e9d-87c8-7a0be8531530", + "type": "restores" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restores" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restores" + }, + { + "dest-uuid": "435dfb86-2697-4867-85b5-2fef496c0517", + "type": "restores" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "restores" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restores" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "restores" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "restores" + }, + { + "dest-uuid": "768dce68-8d0d-477a-b01d-0eea98b963a1", + "type": "restores" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restores" + }, + { + "dest-uuid": "8cdeb020-e31e-4f88-a582-f53dcfbda819", + "type": "restores" + }, + { + "dest-uuid": "677569f9-a8b0-459e-ab24-7f18091fa7bf", + "type": "restores" + }, + { + "dest-uuid": "86850eff-2729-40c3-b85e-c4af26da4a2d", + "type": "restores" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restores" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restores" + }, + { + "dest-uuid": "edf91964-b26e-4b4a-9600-ccacd7d7df24", + "type": "restores" + }, + { + "dest-uuid": "8a2f40cf-8325-47f9-96e4-b1ca4c7389bd", + "type": "restores" + }, + { + "dest-uuid": "d0b4fcdb-d67d-4ed2-99ce-788b12f8c0f4", + "type": "restores" + }, + { + "dest-uuid": "9e09ddb2-1746-4448-9cad-7f8b41777d6d", + "type": "restores" + }, + { + "dest-uuid": "c3c8c916-2f3c-4e71-94b2-240bdfc996f0", + "type": "restores" + }, + { + "dest-uuid": "f005e783-57d4-4837-88ad-dbe7faee1c51", + "type": "restores" + }, + { + "dest-uuid": "890c9858-598c-401d-a4d5-c67ebcdd703a", + "type": "restores" + }, + { + "dest-uuid": "10ffac09-e42d-4f56-ab20-db94c67d76ff", + "type": "restores" + }, + { + "dest-uuid": "3fc01293-ef5e-41c6-86ce-61f10706b64a", + "type": "restores" + } + ], + "uuid": "937e8243-e4a8-54b7-a09b-16c88e1f94bb", + "value": "Reissue Credential" + }, + { + "description": "Initiating a host's shutdown sequence to terminate all running processes.", + "meta": { + "external_id": "D3-HS", + "kill_chain": [ + "Evict:Process-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:HostShutdown" + ] + }, + "related": [ + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "terminates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "terminates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + } + ], + "uuid": "6ecb5446-d874-584a-86d8-704bb8fa8ca2", + "value": "Host Shutdown" + }, + { + "description": "Data exchange mapping identifies and models the organization's intended design for the flows of the data types, formats, and volumes between systems at the application layer.", + "meta": { + "external_id": "D3-DEM", + "kill_chain": [ + "Model:System-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DataExchangeMapping" + ], + "synonyms": [ + "Data Flow Mapping", + "Information Exchange Mapping" + ] + }, + "uuid": "bc9684d4-bd04-531b-a37e-0c709d694e20", + "value": "Data Exchange Mapping" + }, + { + "description": "Detects processes that modify, change, or replace their own code at runtime.", + "meta": { + "external_id": "D3-PSMD", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProcessSelf-ModificationDetection" + ] + }, + "related": [ + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "analyzes" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + } + ], + "uuid": "b9b2e3b0-4cee-58d7-b97e-33231a812799", + "value": "Process Self-Modification Detection" + }, + { + "description": "Passive logical link mapping only listens to network traffic as a means to map the the whole data link layer, where the links represent logical data flows rather than physical connections.", + "meta": { + "external_id": "D3-PLLM", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:PassiveLogicalLinkMapping" + ], + "synonyms": [ + "Passive Logical Layer Mapping" + ] + }, + "uuid": "52edb6e4-fa0f-5594-812b-54e4bed33360", + "value": "Passive Logical Link Mapping" + }, + { + "description": "A one-time password is valid for only one user authentication.", + "meta": { + "external_id": "D3-OTP", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:One-timePassword" + ], + "synonyms": [ + "OTP" + ] + }, + "related": [ + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "authenticates" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "use-limits" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "use-limits" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "use-limits" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "692074ae-bb62-4a5e-a735-02cb6bde458c", + "type": "use-limits" + }, + { + "dest-uuid": "09c4c11e-4fa1-4f8c-8dad-3cf8e69ad119", + "type": "use-limits" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "authenticates" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "1d24cdee-9ea2-4189-b08e-af110bf2435d", + "type": "use-limits" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "authenticates" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "authenticates" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "authenticates" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "authenticates" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "authenticates" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "authenticates" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "authenticates" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "authenticates" + } + ], + "uuid": "b7b2e1e7-8e4c-5ba4-bc19-0a67e8f439c5", + "value": "One-time Password" + }, + { + "description": "Analyzing changes in service binary files by comparing to a source of truth.", + "meta": { + "external_id": "D3-SBV", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ServiceBinaryVerification" + ] + }, + "related": [ + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "verifies" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "69e5226d-05dc-4f15-95d7-44f5ed78d06e", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "b5327dd1-6bf9-4785-a199-25bcbd1f4a9d", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "9e8b28c9-35fe-48ac-a14d-e6cc032dcbcd", + "type": "verifies" + }, + { + "dest-uuid": "92a78814-b191-47ca-909c-1ccfe3777414", + "type": "verifies" + }, + { + "dest-uuid": "70d81154-b187-45f9-8ec5-295d01255979", + "type": "verifies" + } + ], + "uuid": "2a9aa494-f476-59c5-8bc1-520f19a731f3", + "value": "Service Binary Verification" + }, + { + "description": "Removing unreachable or \"dead code\" from compiled source code.", + "meta": { + "external_id": "D3-DCE", + "kill_chain": [ + "Harden:Application-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DeadCodeElimination" + ] + }, + "uuid": "a6ab4a27-bea4-52a9-aee6-b3ada84e12f0", + "value": "Dead Code Elimination" + }, + { + "description": "Preventing one process from writing to the memory space of another process through hardware based address manager implementations.", + "meta": { + "external_id": "D3-HBPI", + "kill_chain": [ + "Isolate:Execution-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:Hardware-basedProcessIsolation" + ], + "synonyms": [ + "Virtualization" + ] + }, + "related": [ + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "isolates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "isolates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "isolates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "isolates" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "isolates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "isolates" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "isolates" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "isolates" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "isolates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "isolates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "isolates" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + } + ], + "uuid": "2c5d7563-06b0-5250-b72c-d6ff3b4dcdb6", + "value": "Hardware-based Process Isolation" + }, + { + "description": "Restricting inter-domain trust by modifying domain configuration.", + "meta": { + "external_id": "D3-DTP", + "kill_chain": [ + "Harden:Credential-Hardening" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:DomainTrustPolicy" + ] + }, + "related": [ + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + } + ], + "uuid": "177288bd-0d7a-575e-901c-3af228358234", + "value": "Domain Trust Policy" + }, + { + "description": "Blocking a DNS lookup's answer's IP address value.", + "meta": { + "external_id": "D3-FRIDL", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ForwardResolutionIPDenylisting" + ], + "synonyms": [ + "Forward Resolution IP Blacklisting" + ] + }, + "uuid": "644db38c-94cd-5e09-956b-c274eea9be16", + "value": "Forward Resolution IP Denylisting" + }, + { + "description": "Analyzing a Container Image with respect to a set of policies.", + "meta": { + "external_id": "D3-CIA", + "kill_chain": [ + "Model:Asset-Inventory" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ContainerImageAnalysis" + ], + "synonyms": [ + "Container Image Scanning" + ] + }, + "related": [ + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "analyzes" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "analyzes" + }, + { + "dest-uuid": "4fd8a28b-4b3a-4cd6-a8cf-85ba5f824a7f", + "type": "analyzes" + } + ], + "uuid": "8c2294c7-d7c4-556b-b908-144ae891f1a2", + "value": "Container Image Analysis" + }, + { + "description": "Active logical link mapping sends and receives network traffic as a means to map the whole data link layer, where the links represent logical data flows rather than physical connection", + "meta": { + "external_id": "D3-ALLM", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ActiveLogicalLinkMapping" + ] + }, + "uuid": "e776f523-cc55-5076-b26d-db08bbdffc01", + "value": "Active Logical Link Mapping" + }, + { + "description": "Controlling access to local computer system resources with kernel-level capabilities.", + "meta": { + "external_id": "D3-MAC", + "kill_chain": [ + "Isolate:Execution-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:MandatoryAccessControl" + ] + }, + "related": [ + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "isolates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "isolates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "isolates" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "isolates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "isolates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "isolates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "isolates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "isolates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "isolates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "707399d6-ab3e-4963-9315-d9d3818cd6a0", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "isolates" + }, + { + "dest-uuid": "354a7f88-63fb-41b5-a801-ce3b377b36f1", + "type": "restricts" + }, + { + "dest-uuid": "120d5519-3098-4e1c-9191-2aa61232f073", + "type": "restricts" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "isolates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "isolates" + }, + { + "dest-uuid": "322bad5a-1c49-4d23-ab79-76d641794afa", + "type": "restricts" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "3ccef7ae-cb5e-48f6-8302-897105fbf55c", + "type": "restricts" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "01a5a209-b94c-450b-b7f9-946497d91055", + "type": "restricts" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "ebbe170d-aa74-4946-8511-9921243415a3", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "4cbc6a62-9e34-4f94-8a19-5c1a11392a49", + "type": "restricts" + }, + { + "dest-uuid": "4ff5d6a8-c062-4c68-a778-36fc5edd564f", + "type": "restricts" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "restricts" + }, + { + "dest-uuid": "045d0922-2310-4e60-b5e4-3302302cb3c5", + "type": "restricts" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "restricts" + }, + { + "dest-uuid": "e358d692-23c0-4a31-9eb6-ecc13a8d7735", + "type": "restricts" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "8f4a33ec-8b1f-4b80-a2f6-642b2e479580", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "7d57b371-10c2-45e5-b3cc-83a8fb380e4c", + "type": "restricts" + }, + { + "dest-uuid": "93591901-3172-4e94-abf8-6034ab26f44a", + "type": "restricts" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "isolates" + }, + { + "dest-uuid": "4ae4f953-fe58-4cc8-a327-33257e30a830", + "type": "restricts" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "isolates" + }, + { + "dest-uuid": "cc89ecbd-3d33-4a41-bcca-001e702d18fd", + "type": "restricts" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "isolates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "isolates" + }, + { + "dest-uuid": "7c0f17c9-1af6-4628-9cbd-9e45482dd605", + "type": "restricts" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "isolates" + }, + { + "dest-uuid": "7007935a-a8a7-4c0b-bd98-4e85be8ed197", + "type": "restricts" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "f9e9365a-9ca2-4d9c-8e7c-050d73d1101a", + "type": "restricts" + }, + { + "dest-uuid": "840a987a-99bd-4a80-a5c9-0cb2baa6cade", + "type": "restricts" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "isolates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "isolates" + }, + { + "dest-uuid": "f3c544dc-673c-4ef3-accb-53229f1ae077", + "type": "restricts" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "isolates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "isolates" + } + ], + "uuid": "5c13ef28-ac3a-52fa-99de-563fc6a0bd45", + "value": "Mandatory Access Control" + }, + { + "description": "Cryptographically verifying installed system firmware integrity.", + "meta": { + "external_id": "D3-SFV", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemFirmwareVerification" + ] + }, + "related": [ + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "verifies" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "verifies" + }, + { + "dest-uuid": "a6557c75-798f-42e4-be70-ab4502e0a3bc", + "type": "verifies" + }, + { + "dest-uuid": "16ab6452-c3c1-497c-a47d-206018ca1ada", + "type": "verifies" + } + ], + "uuid": "4905080d-7cd7-5a17-9223-2454462d5481", + "value": "System Firmware Verification" + }, + { + "description": "Analyzing the properties of file create system call invocations.", + "meta": { + "external_id": "D3-FCA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileCreationAnalysis" + ] + }, + "related": [ + { + "dest-uuid": "1c34f7aa-9341-4a48-bfab-af22e51aca6c", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + }, + { + "dest-uuid": "a6937325-9321-4e2e-bb2b-3ed2d40b2a9d", + "type": "analyzes" + } + ], + "uuid": "4d53ce87-4d9e-58e6-887f-61a7998fe875", + "value": "File Creation Analysis" + }, + { + "description": "Analysis of any system process startup configuration.", + "meta": { + "external_id": "D3-SICA", + "kill_chain": [ + "Detect:Platform-Monitoring" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:SystemInitConfigAnalysis" + ], + "synonyms": [ + "Autorun Analysis", + "Startup Analysis" + ] + }, + "related": [ + { + "dest-uuid": "28170e17-8384-415c-8486-2e6b294cb803", + "type": "analyzes" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "28170e17-8384-415c-8486-2e6b294cb803", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "9efb1ea7-c37b-4595-9640-b7680cd84279", + "type": "analyzes" + }, + { + "dest-uuid": "dca670cf-eeec-438f-8185-fd959d9ef211", + "type": "analyzes" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "17cc750b-e95b-4d7d-9dde-49e0de24148c", + "type": "analyzes" + }, + { + "dest-uuid": "28170e17-8384-415c-8486-2e6b294cb803", + "type": "analyzes" + }, + { + "dest-uuid": "c0dfe7b0-b873-4618-9ff8-53e31f70907f", + "type": "analyzes" + } + ], + "uuid": "3ff31fe3-4b89-5376-ac54-497528092610", + "value": "System Init Config Analysis" + }, + { + "description": "Passive physical link mapping only listens to network traffic as a means to map the physical layer.", + "meta": { + "external_id": "D3-PPLM", + "kill_chain": [ + "Model:Network-Mapping" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:PassivePhysicalLinkMapping" + ], + "synonyms": [ + "Passive Physical Layer Mapping" + ] + }, + "uuid": "520a48b5-b5b2-5eb9-8c8d-10c3e806e8d1", + "value": "Passive Physical Link Mapping" + }, + { + "description": "Identification of suspicious processes executing on an end-point device by examining the ancestry and siblings of a process, and the associated metadata of each node on the tree, such as process execution, duration, and order relative to siblings and ancestors.", + "meta": { + "external_id": "D3-PLA", + "kill_chain": [ + "Detect:Process-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:ProcessLineageAnalysis" + ], + "synonyms": [ + "Process Tree Analysis" + ] + }, + "related": [ + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "analyzes" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "analyzes" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "analyzes" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "analyzes" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "analyzes" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "analyzes" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "analyzes" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "analyzes" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "analyzes" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "analyzes" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "analyzes" + } + ], + "uuid": "32c75bca-fd70-593c-a40a-4a6d582599a2", + "value": "Process Lineage Analysis" + }, + { + "description": "Blocking DNS queries that are deceptively similar to legitimate domain names.", + "meta": { + "external_id": "D3-HDL", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:HomoglyphDenylisting" + ], + "synonyms": [ + "Homoglyph Blacklisting" + ] + }, + "uuid": "0352af96-b290-5e0e-9229-828c3298b663", + "value": "Homoglyph Denylisting" + }, + { + "description": "Employing a pattern matching rule language to analyze the content of files.", + "meta": { + "external_id": "D3-FCR", + "kill_chain": [ + "Detect:File-Analysis" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:FileContentRules" + ], + "synonyms": [ + "File Content Signatures", + "File Signatures" + ] + }, + "uuid": "dabd0a87-3fc1-57fb-8cf0-d5915a0d660f", + "value": "File Content Rules" + }, + { + "description": "Restricting network traffic originating from untrusted networks destined towards a private host or enclave.", + "meta": { + "external_id": "D3-ITF", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:InboundTrafficFiltering" + ] + }, + "related": [ + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "filters" + }, + { + "dest-uuid": "36b2a1d7-e09e-49bf-b45e-477076c2ec01", + "type": "filters" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "filters" + }, + { + "dest-uuid": "38eb0c22-6caf-46ce-8869-5964bd735858", + "type": "filters" + }, + { + "dest-uuid": "0bda01d5-4c1d-4062-8ee2-6872334383c3", + "type": "filters" + }, + { + "dest-uuid": "3f886f2a-874f-4333-b794-aa6075009b1c", + "type": "filters" + } + ], + "uuid": "f2df5454-8782-517a-ab19-1e51e2df4fb9", + "value": "Inbound Traffic Filtering" + }, + { + "description": "Restricting network traffic originating from a private host or enclave destined towards untrusted networks.", + "meta": { + "external_id": "D3-OTF", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:OutboundTrafficFiltering" + ] + }, + "related": [ + { + "dest-uuid": "b18eae87-b469-4e14-b454-b171b416bc18", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "c21d5a77-d422-4a69-acd7-2c53c1faa34b", + "type": "filters" + }, + { + "dest-uuid": "54b4c251-1f0e-4eba-ba6b-dbc7a6f6f06b", + "type": "filters" + }, + { + "dest-uuid": "cc7b8c4e-9be0-47ca-b0bb-83915ec3ee2f", + "type": "filters" + }, + { + "dest-uuid": "d742a578-d70e-4d0e-96a6-02a9c30204e6", + "type": "filters" + }, + { + "dest-uuid": "fb8d023d-45be-47e9-bc51-f56bcae6435b", + "type": "filters" + }, + { + "dest-uuid": "355be19c-ffc9-46d5-8d50-d6a036c675b6", + "type": "filters" + }, + { + "dest-uuid": "bf1b6176-597c-4600-bfcd-ac989670f96b", + "type": "filters" + }, + { + "dest-uuid": "bf176076-b789-408e-8cba-7275e81c0ada", + "type": "filters" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "filters" + }, + { + "dest-uuid": "8e350c1d-ac79-4b5c-bd4e-7476d7e84ec5", + "type": "filters" + }, + { + "dest-uuid": "69b8fd78-40e8-4600-ae4d-662c9d7afdb3", + "type": "filters" + }, + { + "dest-uuid": "a782ebe2-daba-42c7-bc82-e8e9d923162d", + "type": "filters" + }, + { + "dest-uuid": "9a60a291-8960-4387-8a4a-2ab5c18bb50b", + "type": "filters" + }, + { + "dest-uuid": "79a4052e-1a89-4b09-aea6-51f1d11fe19c", + "type": "filters" + }, + { + "dest-uuid": "86a96bf6-cf8b-411c-aaeb-8959944d64f7", + "type": "filters" + }, + { + "dest-uuid": "7bd9c723-2f78-4309-82c5-47cad406572b", + "type": "filters" + }, + { + "dest-uuid": "4061e78c-1284-44b4-9116-73e4ac3912f7", + "type": "filters" + }, + { + "dest-uuid": "b8902400-e6c5-4ba2-95aa-2d35b442b118", + "type": "filters" + }, + { + "dest-uuid": "ad255bfe-a9e6-4b52-a258-8d3462abe842", + "type": "filters" + }, + { + "dest-uuid": "4fe28b27-b13c-453e-a386-c2ef362a573b", + "type": "filters" + }, + { + "dest-uuid": "40597f16-0963-4249-bf4c-ac93b7fb9807", + "type": "filters" + }, + { + "dest-uuid": "24bfaeba-cb0d-4525-b3dc-507c77ecec41", + "type": "filters" + }, + { + "dest-uuid": "84e02621-8fdf-470f-bd58-993bb6a89d91", + "type": "filters" + }, + { + "dest-uuid": "1996eef1-ced3-4d7f-bf94-33298cabbf72", + "type": "filters" + }, + { + "dest-uuid": "ef67e13e-5598-4adc-bdb2-998225874fa9", + "type": "filters" + }, + { + "dest-uuid": "c8e87b83-edbb-48d4-9295-4974897525b7", + "type": "filters" + }, + { + "dest-uuid": "f24faf46-3b26-4dbb-98f2-63460498e433", + "type": "filters" + }, + { + "dest-uuid": "df8b2a25-8bdf-4856-953c-a04372b1c161", + "type": "filters" + }, + { + "dest-uuid": "e6919abc-99f9-4c6c-95a5-14761e7b2add", + "type": "filters" + }, + { + "dest-uuid": "ca9d3402-ada3-484d-876a-d717bd6e05f2", + "type": "filters" + }, + { + "dest-uuid": "830c9528-df21-472c-8c14-a036bf17d665", + "type": "filters" + } + ], + "uuid": "d6c9eb1e-5fb2-5a10-a73b-9b1075ac4a59", + "value": "Outbound Traffic Filtering" + }, + { + "description": "Restoring a user account's access to resources by unlocking a locked User Account.", + "meta": { + "external_id": "D3-ULA", + "kill_chain": [ + "Restore:Restore-Access" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:UnlockAccount" + ] + }, + "related": [ + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "restores" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "e74de37c-a829-446c-937d-56a44f0e9306", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "8f104855-e5b7-4077-b1f5-bc3103b41abe", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "fdc47f44-dd32-4b99-af5f-209f556f63c2", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "21875073-b0ee-49e3-9077-1e2a885359af", + "type": "restores" + }, + { + "dest-uuid": "c3d4bdd9-2cfe-4a80-9d0c-07a29ecdce8f", + "type": "restores" + }, + { + "dest-uuid": "e01be9c5-e763-4caf-aeb7-000b416aef67", + "type": "restores" + }, + { + "dest-uuid": "2dbbdcd5-92cf-44c0-aea2-fe24783a6bc3", + "type": "restores" + }, + { + "dest-uuid": "b24e2a20-3b3d-4bf0-823b-1ed765398fb0", + "type": "restores" + }, + { + "dest-uuid": "a10641f4-87b4-45a3-a906-92a149cb2c27", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "6151cbea-819b-455a-9fa6-99a1cc58797d", + "type": "restores" + }, + { + "dest-uuid": "b17a1a56-e99c-403c-8948-561df0cffe81", + "type": "restores" + }, + { + "dest-uuid": "25659dd6-ea12-45c4-97e6-381e3e4b593e", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + }, + { + "dest-uuid": "f232fa7a-025c-4d43-abc7-318e81a73d65", + "type": "restores" + } + ], + "uuid": "dd547285-c3de-518b-bb09-8788627f3feb", + "value": "Unlock Account" + }, + { + "description": "Initiating a host's reboot sequence to terminate all running processes.", + "meta": { + "external_id": "D3-HR", + "kill_chain": [ + "Evict:Process-Eviction" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:HostReboot" + ] + }, + "related": [ + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "terminates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "terminates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "terminates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "35187df2-31ed-43b6-a1f5-2f1d3d58d3f1", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "f4c1826f-a322-41cd-9557-562100848c84", + "type": "terminates" + }, + { + "dest-uuid": "5d0d3609-d06d-49e1-b9c9-b544e0c618cb", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "35dd844a-b219-4e2b-a6bb-efa9a75995a9", + "type": "terminates" + }, + { + "dest-uuid": "1ecfdab8-7d59-4c98-95d4-dc41970f57fc", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "1644e709-12d2-41e5-a60f-3470991f5011", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + }, + { + "dest-uuid": "ac08589e-ee59-4935-8667-d845e38fe579", + "type": "terminates" + }, + { + "dest-uuid": "03d7999c-1f4c-42cc-8373-e7690d318104", + "type": "terminates" + }, + { + "dest-uuid": "9c306d8d-cde7-4b4c-b6e8-d0bb16caca36", + "type": "terminates" + }, + { + "dest-uuid": "f63fe421-b1d1-45c0-b8a7-02cd16ff2bed", + "type": "terminates" + }, + { + "dest-uuid": "65f2d882-3f41-4d48-8a06-29af77ec9f90", + "type": "terminates" + }, + { + "dest-uuid": "51a14c76-dd3b-440b-9c20-2bf91d25a814", + "type": "terminates" + }, + { + "dest-uuid": "005a06c6-14bf-4118-afa0-ebcd8aebb0c9", + "type": "terminates" + } + ], + "uuid": "342ba701-6921-5383-9e02-b3bf9e1d6f08", + "value": "Host Reboot" + }, + { + "description": "Filtering incoming email traffic based on specific criteria.", + "meta": { + "external_id": "D3-EF", + "kill_chain": [ + "Isolate:Network-Isolation" + ], + "refs": [ + "https://d3fend.mitre.org/technique/d3f:EmailFiltering" + ] + }, + "related": [ + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "filters" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "filters" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "filters" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "filters" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "filters" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "filters" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "filters" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "filters" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "filters" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "filters" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "filters" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "filters" + }, + { + "dest-uuid": "1e9eb839-294b-48cc-b0d3-c45555a2a004", + "type": "filters" + }, + { + "dest-uuid": "9e7452df-5144-4b6e-b04a-b66dd4016747", + "type": "filters" + }, + { + "dest-uuid": "2e34237d-8574-43f6-aace-ae2915de8597", + "type": "filters" + }, + { + "dest-uuid": "2b742742-28c3-4e1b-bab7-8350d6300fa7", + "type": "filters" + } + ], + "uuid": "1dfa7e9f-1160-5b18-9fac-19d228c3c691", + "value": "Email Filtering" + } + ], + "version": 1 +} diff --git a/galaxies/mitre-d3fend.json b/galaxies/mitre-d3fend.json new file mode 100644 index 0000000..eb31951 --- /dev/null +++ b/galaxies/mitre-d3fend.json @@ -0,0 +1,49 @@ +{ + "description": "A knowledge graph of cybersecurity countermeasures.", + "icon": "user-shield", + "kill_chain_order": { + "Model": [ + "Asset-Inventory", + "Network-Mapping", + "Operational-Activity-Mapping", + "System-Mapping" + ], + "Harden": [ + "Application-Hardening", + "Credential-Hardening", + "Message-Hardening", + "Platform-Hardening" + ], + "Detect": [ + "File-Analysis", + "Identifier-Analysis", + "Message-Analysis", + "Network-Traffic-Analysis", + "Platform-Monitoring", + "Process-Analysis", + "User-Behavior-Analysis" + ], + "Isolate": [ + "Execution-Isolation", + "Network-Isolation" + ], + "Deceive": [ + "Decoy-Environment", + "Decoy-Object" + ], + "Evict": [ + "Credential-Eviction", + "File-Eviction", + "Process-Eviction" + ], + "Restore": [ + "Restore-Access", + "Restore-Object" + ] + }, + "name": "MITRE D3FEND", + "namespace": "mitre", + "type": "mitre-d3fend", + "uuid": "77d1bbfa-2982-4e0a-9238-1dae4a48c5b4", + "version": 1 +} diff --git a/tools/gen_mitre_d3fend.py b/tools/gen_mitre_d3fend.py index 3bb0160..845d1ca 100755 --- a/tools/gen_mitre_d3fend.py +++ b/tools/gen_mitre_d3fend.py @@ -1,4 +1,22 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# +# A simple convertor of the MITRE D3FEND to a MISP Galaxy datastructure. +# Copyright (C) 2024 Christophe Vandeplas +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + import json import os import requests @@ -7,15 +25,16 @@ import uuid d3fend_url = 'https://d3fend.mitre.org/ontologies/d3fend.json' d3fend_full_mappings_url = 'https://d3fend.mitre.org/api/ontology/inference/d3fend-full-mappings.json' +# we love eating lots of memory +r = requests.get(d3fend_url) +d3fend_json = r.json() + +r = requests.get(d3fend_full_mappings_url) +d3fend_mappings_json = r.json() + +with open('../clusters/mitre-attack-pattern.json', 'r') as mitre_f: + mitre = json.load(mitre_f) -try: - with open('d3fend.json', 'r') as f: - d3fend_json = json.load(f) -except Exception: - r = requests.get(d3fend_url) - with open('d3fend.json', 'w') as f: - f.write(r.text) - d3fend_json = r.json() uuid_seed = '35527064-12b4-4b73-952b-6d76b9f1b1e3' @@ -23,6 +42,7 @@ tactics = {} # key = tactic, value = phases phases_ids = [] techniques_ids = [] techniques = [] +relations = {} def get_as_list(item): @@ -103,6 +123,33 @@ def find_kill_chain_of(original_item): return find_kill_chain_of(data[parent_class]) +def find_mitre_uuid_from_technique_id(technique_id): + for item in mitre['values']: + if item['meta']['external_id'] == technique_id: + return item['uuid'] + print("No MITRE UUID found for technique_id: ", technique_id) + return None + + +# relationships +for item in d3fend_mappings_json['results']['bindings']: + d3fend_technique = item['def_tech_label']['value'] + attack_technique = item['off_tech_label']['value'] + attack_technique_id = item['off_tech']['value'].split('#')[-1] + # print(f"Mapping: {d3fend_technique} -> {attack_technique} ({attack_technique_id})") + dest_uuid = find_mitre_uuid_from_technique_id(attack_technique_id) + if dest_uuid: + rel_type = item['def_artifact_rel_label']['value'] + if d3fend_technique not in relations: + relations[d3fend_technique] = [] + relations[d3fend_technique].append( + { + 'dest-uuid': dest_uuid, + 'type': rel_type + } + ) + + # first convert as dict with key = @id data = {} for item in d3fend_json['@graph']: @@ -162,7 +209,9 @@ while seen_new: # synonyms if 'd3f:synonym' in item: technique['meta']['synonyms'] = get_as_list(item['d3f:synonym']) - # TODO relations + # relations + if item['rdfs:label'] in relations: + technique['related'] = relations[item['rdfs:label']] techniques.append(technique) print(f"Technique: {item['rdfs:label']} - {item['d3f:d3fend-id']}") @@ -175,7 +224,7 @@ galaxy_description = 'A knowledge graph of cybersecurity countermeasures.' galaxy_source = 'https://d3fend.mitre.org/' json_galaxy = { 'description': galaxy_description, - 'icon': "map", + 'icon': "user-shield", 'kill_chain_order': kill_chain_tactics, 'name': galaxy_name, 'namespace': "mitre", @@ -208,4 +257,3 @@ with open(os.path.join('..', 'clusters', galaxy_fname), 'w') as f: 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.") - From 0528a62d9bd4f35968abd375efad239f85e6d947 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Tue, 28 May 2024 07:48:22 +0200 Subject: [PATCH 3/5] fix: [d3fend] sort keys to make jq_all_the_things happy --- galaxies/mitre-d3fend.json | 38 +++++++++++++++++++------------------- tools/gen_mitre_d3fend.py | 4 ++-- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/galaxies/mitre-d3fend.json b/galaxies/mitre-d3fend.json index eb31951..301f74b 100644 --- a/galaxies/mitre-d3fend.json +++ b/galaxies/mitre-d3fend.json @@ -2,17 +2,9 @@ "description": "A knowledge graph of cybersecurity countermeasures.", "icon": "user-shield", "kill_chain_order": { - "Model": [ - "Asset-Inventory", - "Network-Mapping", - "Operational-Activity-Mapping", - "System-Mapping" - ], - "Harden": [ - "Application-Hardening", - "Credential-Hardening", - "Message-Hardening", - "Platform-Hardening" + "Deceive": [ + "Decoy-Environment", + "Decoy-Object" ], "Detect": [ "File-Analysis", @@ -23,19 +15,27 @@ "Process-Analysis", "User-Behavior-Analysis" ], - "Isolate": [ - "Execution-Isolation", - "Network-Isolation" - ], - "Deceive": [ - "Decoy-Environment", - "Decoy-Object" - ], "Evict": [ "Credential-Eviction", "File-Eviction", "Process-Eviction" ], + "Harden": [ + "Application-Hardening", + "Credential-Hardening", + "Message-Hardening", + "Platform-Hardening" + ], + "Isolate": [ + "Execution-Isolation", + "Network-Isolation" + ], + "Model": [ + "Asset-Inventory", + "Network-Mapping", + "Operational-Activity-Mapping", + "System-Mapping" + ], "Restore": [ "Restore-Access", "Restore-Object" diff --git a/tools/gen_mitre_d3fend.py b/tools/gen_mitre_d3fend.py index 845d1ca..c397212 100755 --- a/tools/gen_mitre_d3fend.py +++ b/tools/gen_mitre_d3fend.py @@ -248,8 +248,8 @@ json_cluster = { # save the Galaxy and Cluster file with open(os.path.join('..', 'galaxies', galaxy_fname), 'w') as f: - # do not sort_keys as it would break the kill_chain_order - json.dump(json_galaxy, f, indent=2, ensure_ascii=False) + # 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: From ebdcdf29689b5a8d2506e497aa88e770dedfbc06 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Tue, 28 May 2024 08:10:30 +0200 Subject: [PATCH 4/5] fix: [d3fend] updated readme --- README.md | 360 +++++++++++++++++++++------------------- tools/generate-index.py | 7 +- 2 files changed, 192 insertions(+), 175 deletions(-) diff --git a/README.md b/README.md index 55bd5c3..2b6822e 100644 --- a/README.md +++ b/README.md @@ -21,675 +21,691 @@ to localized information (which is not shared) or additional information (that c ## 360.net Threat Actors -[360.net Threat Actors](https://www.misp-project.org/galaxy.html#_360.net_threat_actors) - Known or estimated adversary groups as identified by 360.net. +[360.net Threat Actors](https://www.misp-galaxy.org/360net) - Known or estimated adversary groups as identified by 360.net. Category: *actor* - source: *https://apt.360.net/aptlist* - total: *42* elements -[[HTML](https://www.misp-project.org/galaxy.html#_360.net_threat_actors)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/360net.json)] +[[HTML](https://www.misp-galaxy.org/360net)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/360net.json)] ## Ammunitions -[Ammunitions](https://www.misp-project.org/galaxy.html#_ammunitions) - Common ammunitions galaxy +[Ammunitions](https://www.misp-galaxy.org/ammunitions) - Common ammunitions galaxy Category: *firearm* - source: *https://ammo.com/* - total: *410* elements -[[HTML](https://www.misp-project.org/galaxy.html#_ammunitions)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ammunitions.json)] +[[HTML](https://www.misp-galaxy.org/ammunitions)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ammunitions.json)] ## Android -[Android](https://www.misp-project.org/galaxy.html#_android) - Android malware galaxy based on multiple open sources. +[Android](https://www.misp-galaxy.org/android) - Android malware galaxy based on multiple open sources. Category: *tool* - source: *Open Sources* - total: *433* elements -[[HTML](https://www.misp-project.org/galaxy.html#_android)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/android.json)] +[[HTML](https://www.misp-galaxy.org/android)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/android.json)] ## Azure Threat Research Matrix -[Azure Threat Research Matrix](https://www.misp-project.org/galaxy.html#_azure_threat_research_matrix) - The purpose of the Azure Threat Research Matrix (ATRM) is to educate readers on the potential of Azure-based tactics, techniques, and procedures (TTPs). It is not to teach how to weaponize or specifically abuse them. For this reason, some specific commands will be obfuscated or parts will be omitted to prevent abuse. +[Azure Threat Research Matrix](https://www.misp-galaxy.org/atrm) - The purpose of the Azure Threat Research Matrix (ATRM) is to educate readers on the potential of Azure-based tactics, techniques, and procedures (TTPs). It is not to teach how to weaponize or specifically abuse them. For this reason, some specific commands will be obfuscated or parts will be omitted to prevent abuse. Category: *atrm* - source: *https://github.com/microsoft/Azure-Threat-Research-Matrix* - total: *90* elements -[[HTML](https://www.misp-project.org/galaxy.html#_azure_threat_research_matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/atrm.json)] +[[HTML](https://www.misp-galaxy.org/atrm)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/atrm.json)] ## attck4fraud -[attck4fraud](https://www.misp-project.org/galaxy.html#_attck4fraud) - attck4fraud - Principles of MITRE ATT&CK in the fraud domain +[attck4fraud](https://www.misp-galaxy.org/attck4fraud) - attck4fraud - Principles of MITRE ATT&CK in the fraud domain Category: *guidelines* - source: *Open Sources* - total: *71* elements -[[HTML](https://www.misp-project.org/galaxy.html#_attck4fraud)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/attck4fraud.json)] +[[HTML](https://www.misp-galaxy.org/attck4fraud)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/attck4fraud.json)] ## Backdoor -[Backdoor](https://www.misp-project.org/galaxy.html#_backdoor) - A list of backdoor malware. +[Backdoor](https://www.misp-galaxy.org/backdoor) - A list of backdoor malware. Category: *tool* - source: *Open Sources* - total: *28* elements -[[HTML](https://www.misp-project.org/galaxy.html#_backdoor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/backdoor.json)] +[[HTML](https://www.misp-galaxy.org/backdoor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/backdoor.json)] ## Banker -[Banker](https://www.misp-project.org/galaxy.html#_banker) - A list of banker malware. +[Banker](https://www.misp-galaxy.org/banker) - A list of banker malware. Category: *tool* - source: *Open Sources* - total: *53* elements -[[HTML](https://www.misp-project.org/galaxy.html#_banker)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/banker.json)] +[[HTML](https://www.misp-galaxy.org/banker)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/banker.json)] ## Bhadra Framework -[Bhadra Framework](https://www.misp-project.org/galaxy.html#_bhadra_framework) - Bhadra Threat Modeling Framework +[Bhadra Framework](https://www.misp-galaxy.org/bhadra-framework) - Bhadra Threat Modeling Framework Category: *mobile* - source: *https://arxiv.org/pdf/2005.05110.pdf* - total: *47* elements -[[HTML](https://www.misp-project.org/galaxy.html#_bhadra_framework)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/bhadra-framework.json)] +[[HTML](https://www.misp-galaxy.org/bhadra-framework)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/bhadra-framework.json)] ## Botnet -[Botnet](https://www.misp-project.org/galaxy.html#_botnet) - botnet galaxy +[Botnet](https://www.misp-galaxy.org/botnet) - botnet galaxy Category: *tool* - source: *MISP Project* - total: *130* elements -[[HTML](https://www.misp-project.org/galaxy.html#_botnet)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/botnet.json)] +[[HTML](https://www.misp-galaxy.org/botnet)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/botnet.json)] ## Branded Vulnerability -[Branded Vulnerability](https://www.misp-project.org/galaxy.html#_branded_vulnerability) - List of known vulnerabilities and attacks with a branding +[Branded Vulnerability](https://www.misp-galaxy.org/branded_vulnerability) - List of known vulnerabilities and attacks with a branding Category: *vulnerability* - source: *Open Sources* - total: *14* elements -[[HTML](https://www.misp-project.org/galaxy.html#_branded_vulnerability)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/branded_vulnerability.json)] +[[HTML](https://www.misp-galaxy.org/branded_vulnerability)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/branded_vulnerability.json)] ## Cert EU GovSector -[Cert EU GovSector](https://www.misp-project.org/galaxy.html#_cert_eu_govsector) - Cert EU GovSector +[Cert EU GovSector](https://www.misp-galaxy.org/cert-eu-govsector) - Cert EU GovSector Category: *sector* - source: *CERT-EU* - total: *6* elements -[[HTML](https://www.misp-project.org/galaxy.html#_cert_eu_govsector)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cert-eu-govsector.json)] +[[HTML](https://www.misp-galaxy.org/cert-eu-govsector)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cert-eu-govsector.json)] ## China Defence Universities Tracker -[China Defence Universities Tracker](https://www.misp-project.org/galaxy.html#_china_defence_universities_tracker) - The China Defence Universities Tracker is a database of Chinese institutions engaged in military or security-related science and technology research. It was created by ASPI’s International Cyber Policy Centre. +[China Defence Universities Tracker](https://www.misp-galaxy.org/china-defence-universities) - The China Defence Universities Tracker is a database of Chinese institutions engaged in military or security-related science and technology research. It was created by ASPI’s International Cyber Policy Centre. Category: *academic-institution* - source: *ASPI International Cyber Policy Centre* - total: *159* elements -[[HTML](https://www.misp-project.org/galaxy.html#_china_defence_universities_tracker)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/china-defence-universities.json)] +[[HTML](https://www.misp-galaxy.org/china-defence-universities)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/china-defence-universities.json)] ## CONCORDIA Mobile Modelling Framework - Attack Pattern -[CONCORDIA Mobile Modelling Framework - Attack Pattern](https://www.misp-project.org/galaxy.html#_concordia_mobile_modelling_framework_-_attack_pattern) - A list of Techniques in CONCORDIA Mobile Modelling Framework. +[CONCORDIA Mobile Modelling Framework - Attack Pattern](https://www.misp-galaxy.org/cmtmf-attack-pattern) - A list of Techniques in CONCORDIA Mobile Modelling Framework. Category: *cmtmf-attack-pattern* - source: *https://5g4iot.vlab.cs.hioa.no/* - total: *93* elements -[[HTML](https://www.misp-project.org/galaxy.html#_concordia_mobile_modelling_framework_-_attack_pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cmtmf-attack-pattern.json)] +[[HTML](https://www.misp-galaxy.org/cmtmf-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cmtmf-attack-pattern.json)] ## Country -[Country](https://www.misp-project.org/galaxy.html#_country) - Country meta information based on the database provided by geonames.org. +[Country](https://www.misp-galaxy.org/country) - Country meta information based on the database provided by geonames.org. Category: *country* - source: *MISP Project* - total: *252* elements -[[HTML](https://www.misp-project.org/galaxy.html#_country)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/country.json)] +[[HTML](https://www.misp-galaxy.org/country)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/country.json)] ## Cryptominers -[Cryptominers](https://www.misp-project.org/galaxy.html#_cryptominers) - A list of cryptominer and cryptojacker malware. +[Cryptominers](https://www.misp-galaxy.org/cryptominers) - A list of cryptominer and cryptojacker malware. Category: *Cryptominers* - source: *Open Source Intelligence* - total: *5* elements -[[HTML](https://www.misp-project.org/galaxy.html#_cryptominers)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cryptominers.json)] +[[HTML](https://www.misp-galaxy.org/cryptominers)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cryptominers.json)] ## Actor Types -[Actor Types](https://www.misp-project.org/galaxy.html#_actor_types) - DISARM is a framework designed for describing and understanding disinformation incidents. +[Actor Types](https://www.misp-galaxy.org/disarm-actortypes) - DISARM is a framework designed for describing and understanding disinformation incidents. Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *33* elements -[[HTML](https://www.misp-project.org/galaxy.html#_actor_types)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-actortypes.json)] +[[HTML](https://www.misp-galaxy.org/disarm-actortypes)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-actortypes.json)] ## Countermeasures -[Countermeasures](https://www.misp-project.org/galaxy.html#_countermeasures) - DISARM is a framework designed for describing and understanding disinformation incidents. +[Countermeasures](https://www.misp-galaxy.org/disarm-countermeasures) - DISARM is a framework designed for describing and understanding disinformation incidents. Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *139* elements -[[HTML](https://www.misp-project.org/galaxy.html#_countermeasures)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-countermeasures.json)] +[[HTML](https://www.misp-galaxy.org/disarm-countermeasures)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-countermeasures.json)] ## Detections -[Detections](https://www.misp-project.org/galaxy.html#_detections) - DISARM is a framework designed for describing and understanding disinformation incidents. +[Detections](https://www.misp-galaxy.org/disarm-detections) - DISARM is a framework designed for describing and understanding disinformation incidents. Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *94* elements -[[HTML](https://www.misp-project.org/galaxy.html#_detections)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-detections.json)] +[[HTML](https://www.misp-galaxy.org/disarm-detections)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-detections.json)] ## Techniques -[Techniques](https://www.misp-project.org/galaxy.html#_techniques) - DISARM is a framework designed for describing and understanding disinformation incidents. +[Techniques](https://www.misp-galaxy.org/disarm-techniques) - DISARM is a framework designed for describing and understanding disinformation incidents. Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *298* elements -[[HTML](https://www.misp-project.org/galaxy.html#_techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-techniques.json)] +[[HTML](https://www.misp-galaxy.org/disarm-techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-techniques.json)] ## Election guidelines -[Election guidelines](https://www.misp-project.org/galaxy.html#_election_guidelines) - Universal Development and Security Guidelines as Applicable to Election Technology. +[Election guidelines](https://www.misp-galaxy.org/election-guidelines) - Universal Development and Security Guidelines as Applicable to Election Technology. Category: *guidelines* - source: *Open Sources* - total: *23* elements -[[HTML](https://www.misp-project.org/galaxy.html#_election_guidelines)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/election-guidelines.json)] +[[HTML](https://www.misp-galaxy.org/election-guidelines)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/election-guidelines.json)] + +## Entity + +[Entity](https://www.misp-galaxy.org/entity) - Description of entities that can be involved in events. + +Category: *actor* - source: *MISP Project* - total: *4* elements + +[[HTML](https://www.misp-galaxy.org/entity)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/entity.json)] ## Exploit-Kit -[Exploit-Kit](https://www.misp-project.org/galaxy.html#_exploit-kit) - Exploit-Kit is an enumeration of some exploitation kits used by adversaries. The list includes document, browser and router exploit kits.It's not meant to be totally exhaustive but aim at covering the most seen in the past 5 years +[Exploit-Kit](https://www.misp-galaxy.org/exploit-kit) - Exploit-Kit is an enumeration of some exploitation kits used by adversaries. The list includes document, browser and router exploit kits.It's not meant to be totally exhaustive but aim at covering the most seen in the past 5 years Category: *tool* - source: *MISP Project* - total: *52* elements -[[HTML](https://www.misp-project.org/galaxy.html#_exploit-kit)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/exploit-kit.json)] +[[HTML](https://www.misp-galaxy.org/exploit-kit)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/exploit-kit.json)] ## Firearms -[Firearms](https://www.misp-project.org/galaxy.html#_firearms) - Common firearms galaxy +[Firearms](https://www.misp-galaxy.org/firearms) - Common firearms galaxy Category: *firearm* - source: *https://www.impactguns.com* - total: *5953* elements -[[HTML](https://www.misp-project.org/galaxy.html#_firearms)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/firearms.json)] +[[HTML](https://www.misp-galaxy.org/firearms)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/firearms.json)] ## FIRST DNS Abuse Techniques Matrix -[FIRST DNS Abuse Techniques Matrix](https://www.misp-project.org/galaxy.html#_first_dns_abuse_techniques_matrix) - The Domain Name System (DNS) is a critical part of the Internet, including mapping domain names to IP addresses. Malicious threat actors use domain names, their corresponding technical resources, and other parts of the DNS infrastructure, including its protocols, for their malicious cyber operations. CERTs are confronted with reported DNS abuse on a continuous basis, and rely heavily on DNS analysis and infrastructure to protect their constituencies. Understanding the international customary norms applicable for detecting and mitigating DNS abuse from the perspective of the global incident response community is critical for the open Internet’s stability, security and resiliency. See also https://www.first.org/global/sigs/dns/ for more information. +[FIRST DNS Abuse Techniques Matrix](https://www.misp-galaxy.org/first-dns) - The Domain Name System (DNS) is a critical part of the Internet, including mapping domain names to IP addresses. Malicious threat actors use domain names, their corresponding technical resources, and other parts of the DNS infrastructure, including its protocols, for their malicious cyber operations. CERTs are confronted with reported DNS abuse on a continuous basis, and rely heavily on DNS analysis and infrastructure to protect their constituencies. Understanding the international customary norms applicable for detecting and mitigating DNS abuse from the perspective of the global incident response community is critical for the open Internet’s stability, security and resiliency. See also https://www.first.org/global/sigs/dns/ for more information. Category: *first-dns* - source: *https://www.first.org/global/sigs/dns/* - total: *21* elements -[[HTML](https://www.misp-project.org/galaxy.html#_first_dns_abuse_techniques_matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/first-dns.json)] +[[HTML](https://www.misp-galaxy.org/first-dns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/first-dns.json)] ## Intelligence Agencies -[Intelligence Agencies](https://www.misp-project.org/galaxy.html#_intelligence_agencies) - List of intelligence agencies +[Intelligence Agencies](https://www.misp-galaxy.org/intelligence-agencies) - List of intelligence agencies Category: *Intelligence Agencies* - source: *https://en.wikipedia.org/wiki/List_of_intelligence_agencies* - total: *436* elements -[[HTML](https://www.misp-project.org/galaxy.html#_intelligence_agencies)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/intelligence-agencies.json)] +[[HTML](https://www.misp-galaxy.org/intelligence-agencies)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/intelligence-agencies.json)] ## INTERPOL DWVA Taxonomy -[INTERPOL DWVA Taxonomy](https://www.misp-project.org/galaxy.html#_interpol_dwva_taxonomy) - This taxonomy defines common forms of abuses and entities that represent real-world actors and service that are part of a larger Darknet- and Cryptoasset Ecosystems. +[INTERPOL DWVA Taxonomy](https://www.misp-galaxy.org/interpol-dwva) - This taxonomy defines common forms of abuses and entities that represent real-world actors and service that are part of a larger Darknet- and Cryptoasset Ecosystems. Category: *dwva* - source: *https://interpol-innovation-centre.github.io/DW-VA-Taxonomy/* - total: *94* elements -[[HTML](https://www.misp-project.org/galaxy.html#_interpol_dwva_taxonomy)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/interpol-dwva.json)] +[[HTML](https://www.misp-galaxy.org/interpol-dwva)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/interpol-dwva.json)] ## Malpedia -[Malpedia](https://www.misp-project.org/galaxy.html#_malpedia) - Malware galaxy cluster based on Malpedia. +[Malpedia](https://www.misp-galaxy.org/malpedia) - Malware galaxy cluster based on Malpedia. Category: *tool* - source: *Malpedia* - total: *3039* elements -[[HTML](https://www.misp-project.org/galaxy.html#_malpedia)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/malpedia.json)] +[[HTML](https://www.misp-galaxy.org/malpedia)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/malpedia.json)] ## Microsoft Activity Group actor -[Microsoft Activity Group actor](https://www.misp-project.org/galaxy.html#_microsoft_activity_group_actor) - Activity groups as described by Microsoft +[Microsoft Activity Group actor](https://www.misp-galaxy.org/microsoft-activity-group) - Activity groups as described by Microsoft Category: *actor* - source: *MISP Project* - total: *79* elements -[[HTML](https://www.misp-project.org/galaxy.html#_microsoft_activity_group_actor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/microsoft-activity-group.json)] +[[HTML](https://www.misp-galaxy.org/microsoft-activity-group)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/microsoft-activity-group.json)] ## Misinformation Pattern -[Misinformation Pattern](https://www.misp-project.org/galaxy.html#_misinformation_pattern) - AM!TT Technique +[Misinformation Pattern](https://www.misp-galaxy.org/misinfosec-amitt-misinformation-pattern) - AM!TT Technique Category: *misinformation-pattern* - source: *https://github.com/misinfosecproject/amitt_framework* - total: *61* elements -[[HTML](https://www.misp-project.org/galaxy.html#_misinformation_pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/misinfosec-amitt-misinformation-pattern.json)] +[[HTML](https://www.misp-galaxy.org/misinfosec-amitt-misinformation-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/misinfosec-amitt-misinformation-pattern.json)] ## MITRE ATLAS Attack Pattern -[MITRE ATLAS Attack Pattern](https://www.misp-project.org/galaxy.html#_mitre_atlas_attack_pattern) - MITRE ATLAS Attack Pattern - Adversarial Threat Landscape for Artificial-Intelligence Systems +[MITRE ATLAS Attack Pattern](https://www.misp-galaxy.org/mitre-atlas-attack-pattern) - MITRE ATLAS Attack Pattern - Adversarial Threat Landscape for Artificial-Intelligence Systems Category: *attack-pattern* - source: *https://github.com/mitre-atlas/atlas-navigator-data* - total: *82* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mitre_atlas_attack_pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-atlas-attack-pattern.json)] +[[HTML](https://www.misp-galaxy.org/mitre-atlas-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-atlas-attack-pattern.json)] ## MITRE ATLAS Course of Action -[MITRE ATLAS Course of Action](https://www.misp-project.org/galaxy.html#_mitre_atlas_course_of_action) - MITRE ATLAS Mitigation - Adversarial Threat Landscape for Artificial-Intelligence Systems +[MITRE ATLAS Course of Action](https://www.misp-galaxy.org/mitre-atlas-course-of-action) - MITRE ATLAS Mitigation - Adversarial Threat Landscape for Artificial-Intelligence Systems -Category: *course-of-action* - source: *https://github.com/mitre-atlas/atlas-navigator-data* - total: *19* elements +Category: *course-of-action* - source: *https://github.com/mitre-atlas/atlas-navigator-data* - total: *20* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mitre_atlas_course_of_action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-atlas-course-of-action.json)] +[[HTML](https://www.misp-galaxy.org/mitre-atlas-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-atlas-course-of-action.json)] ## Attack Pattern -[Attack Pattern](https://www.misp-project.org/galaxy.html#_attack_pattern) - ATT&CK tactic +[Attack Pattern](https://www.misp-galaxy.org/mitre-attack-pattern) - ATT&CK tactic Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *1141* elements -[[HTML](https://www.misp-project.org/galaxy.html#_attack_pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-attack-pattern.json)] +[[HTML](https://www.misp-galaxy.org/mitre-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-attack-pattern.json)] ## Course of Action -[Course of Action](https://www.misp-project.org/galaxy.html#_course_of_action) - ATT&CK Mitigation +[Course of Action](https://www.misp-galaxy.org/mitre-course-of-action) - ATT&CK Mitigation Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *281* elements -[[HTML](https://www.misp-project.org/galaxy.html#_course_of_action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-course-of-action.json)] +[[HTML](https://www.misp-galaxy.org/mitre-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-course-of-action.json)] + +## MITRE D3FEND + +[MITRE D3FEND](https://www.misp-galaxy.org/mitre-d3fend) - A knowledge graph of cybersecurity countermeasures. + +Category: *d3fend* - source: *https://d3fend.mitre.org/* - total: *171* elements + +[[HTML](https://www.misp-galaxy.org/mitre-d3fend)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-d3fend.json)] ## mitre-data-component -[mitre-data-component](https://www.misp-project.org/galaxy.html#_mitre-data-component) - Data components are parts of data sources. +[mitre-data-component](https://www.misp-galaxy.org/mitre-data-component) - Data components are parts of data sources. Category: *data-component* - source: *https://github.com/mitre/cti* - total: *117* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mitre-data-component)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-data-component.json)] +[[HTML](https://www.misp-galaxy.org/mitre-data-component)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-data-component.json)] ## mitre-data-source -[mitre-data-source](https://www.misp-project.org/galaxy.html#_mitre-data-source) - Data sources represent the various subjects/topics of information that can be collected by sensors/logs. +[mitre-data-source](https://www.misp-galaxy.org/mitre-data-source) - Data sources represent the various subjects/topics of information that can be collected by sensors/logs. Category: *data-source* - source: *https://github.com/mitre/cti* - total: *40* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mitre-data-source)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-data-source.json)] +[[HTML](https://www.misp-galaxy.org/mitre-data-source)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-data-source.json)] ## Enterprise Attack - Attack Pattern -[Enterprise Attack - Attack Pattern](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_attack_pattern) - ATT&CK tactic +[Enterprise Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-enterprise-attack-attack-pattern) - ATT&CK tactic Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *219* elements -[[HTML](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_attack_pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-attack-pattern.json)] +[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-attack-pattern.json)] ## Enterprise Attack - Course of Action -[Enterprise Attack - Course of Action](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_course_of_action) - ATT&CK Mitigation +[Enterprise Attack - Course of Action](https://www.misp-galaxy.org/mitre-enterprise-attack-course-of-action) - ATT&CK Mitigation Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *215* elements -[[HTML](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_course_of_action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-course-of-action.json)] +[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-course-of-action.json)] ## Enterprise Attack - Intrusion Set -[Enterprise Attack - Intrusion Set](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_intrusion_set) - Name of ATT&CK Group +[Enterprise Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-enterprise-attack-intrusion-set) - Name of ATT&CK Group Category: *actor* - source: *https://github.com/mitre/cti* - total: *69* elements -[[HTML](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_intrusion_set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-intrusion-set.json)] +[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-intrusion-set.json)] ## Enterprise Attack - Malware -[Enterprise Attack - Malware](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_malware) - Name of ATT&CK software +[Enterprise Attack - Malware](https://www.misp-galaxy.org/mitre-enterprise-attack-malware) - Name of ATT&CK software Category: *tool* - source: *https://github.com/mitre/cti* - total: *188* elements -[[HTML](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-malware.json)] +[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-malware.json)] ## Enterprise Attack - Tool -[Enterprise Attack - Tool](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_tool) - Name of ATT&CK software +[Enterprise Attack - Tool](https://www.misp-galaxy.org/mitre-enterprise-attack-tool) - Name of ATT&CK software Category: *tool* - source: *https://github.com/mitre/cti* - total: *45* elements -[[HTML](https://www.misp-project.org/galaxy.html#_enterprise_attack_-_tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-tool.json)] +[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-tool.json)] ## Assets -[Assets](https://www.misp-project.org/galaxy.html#_assets) - A list of asset categories that are commonly found in industrial control systems. +[Assets](https://www.misp-galaxy.org/mitre-ics-assets) - A list of asset categories that are commonly found in industrial control systems. Category: *asset* - source: *https://collaborate.mitre.org/attackics/index.php/All_Assets* - total: *7* elements -[[HTML](https://www.misp-project.org/galaxy.html#_assets)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-assets.json)] +[[HTML](https://www.misp-galaxy.org/mitre-ics-assets)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-assets.json)] ## Groups -[Groups](https://www.misp-project.org/galaxy.html#_groups) - Groups are sets of related intrusion activity that are tracked by a common name in the security community. Groups are also sometimes referred to as campaigns or intrusion sets. Some groups have multiple names associated with the same set of activities due to various organizations tracking the same set of activities by different names. Groups are mapped to publicly reported technique use and referenced in the ATT&CK for ICS knowledge base. Groups are also mapped to reported software used during intrusions. +[Groups](https://www.misp-galaxy.org/mitre-ics-groups) - Groups are sets of related intrusion activity that are tracked by a common name in the security community. Groups are also sometimes referred to as campaigns or intrusion sets. Some groups have multiple names associated with the same set of activities due to various organizations tracking the same set of activities by different names. Groups are mapped to publicly reported technique use and referenced in the ATT&CK for ICS knowledge base. Groups are also mapped to reported software used during intrusions. Category: *actor* - source: *https://collaborate.mitre.org/attackics/index.php/Groups* - total: *10* elements -[[HTML](https://www.misp-project.org/galaxy.html#_groups)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-groups.json)] +[[HTML](https://www.misp-galaxy.org/mitre-ics-groups)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-groups.json)] ## Levels -[Levels](https://www.misp-project.org/galaxy.html#_levels) - Based on the Purdue Model to aid ATT&CK for ICS users to understand which techniques are applicable to their environment. +[Levels](https://www.misp-galaxy.org/mitre-ics-levels) - Based on the Purdue Model to aid ATT&CK for ICS users to understand which techniques are applicable to their environment. Category: *level* - source: *https://collaborate.mitre.org/attackics/index.php/All_Levels* - total: *3* elements -[[HTML](https://www.misp-project.org/galaxy.html#_levels)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-levels.json)] +[[HTML](https://www.misp-galaxy.org/mitre-ics-levels)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-levels.json)] ## Software -[Software](https://www.misp-project.org/galaxy.html#_software) - Software is a generic term for custom or commercial code, operating system utilities, open-source software, or other tools used to conduct behavior modeled in ATT&CK for ICS. +[Software](https://www.misp-galaxy.org/mitre-ics-software) - Software is a generic term for custom or commercial code, operating system utilities, open-source software, or other tools used to conduct behavior modeled in ATT&CK for ICS. Category: *tool* - source: *https://collaborate.mitre.org/attackics/index.php/Software* - total: *17* elements -[[HTML](https://www.misp-project.org/galaxy.html#_software)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-software.json)] +[[HTML](https://www.misp-galaxy.org/mitre-ics-software)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-software.json)] ## Tactics -[Tactics](https://www.misp-project.org/galaxy.html#_tactics) - A list of all 11 tactics in ATT&CK for ICS +[Tactics](https://www.misp-galaxy.org/mitre-ics-tactics) - A list of all 11 tactics in ATT&CK for ICS Category: *tactic* - source: *https://collaborate.mitre.org/attackics/index.php/All_Tactics* - total: *9* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tactics)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-tactics.json)] +[[HTML](https://www.misp-galaxy.org/mitre-ics-tactics)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-tactics.json)] ## Techniques -[Techniques](https://www.misp-project.org/galaxy.html#_techniques) - A list of Techniques in ATT&CK for ICS. +[Techniques](https://www.misp-galaxy.org/mitre-ics-techniques) - A list of Techniques in ATT&CK for ICS. Category: *attack-pattern* - source: *https://collaborate.mitre.org/attackics/index.php/All_Techniques* - total: *78* elements -[[HTML](https://www.misp-project.org/galaxy.html#_techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-techniques.json)] +[[HTML](https://www.misp-galaxy.org/mitre-ics-techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-techniques.json)] ## Intrusion Set -[Intrusion Set](https://www.misp-project.org/galaxy.html#_intrusion_set) - Name of ATT&CK Group +[Intrusion Set](https://www.misp-galaxy.org/mitre-intrusion-set) - Name of ATT&CK Group Category: *actor* - source: *https://github.com/mitre/cti* - total: *165* elements -[[HTML](https://www.misp-project.org/galaxy.html#_intrusion_set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-intrusion-set.json)] +[[HTML](https://www.misp-galaxy.org/mitre-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-intrusion-set.json)] ## Malware -[Malware](https://www.misp-project.org/galaxy.html#_malware) - Name of ATT&CK software +[Malware](https://www.misp-galaxy.org/mitre-malware) - Name of ATT&CK software Category: *tool* - source: *https://github.com/mitre/cti* - total: *705* elements -[[HTML](https://www.misp-project.org/galaxy.html#_malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-malware.json)] +[[HTML](https://www.misp-galaxy.org/mitre-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-malware.json)] ## Mobile Attack - Attack Pattern -[Mobile Attack - Attack Pattern](https://www.misp-project.org/galaxy.html#_mobile_attack_-_attack_pattern) - ATT&CK tactic +[Mobile Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-mobile-attack-attack-pattern) - ATT&CK tactic Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *76* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mobile_attack_-_attack_pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-attack-pattern.json)] +[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-attack-pattern.json)] ## Mobile Attack - Course of Action -[Mobile Attack - Course of Action](https://www.misp-project.org/galaxy.html#_mobile_attack_-_course_of_action) - ATT&CK Mitigation +[Mobile Attack - Course of Action](https://www.misp-galaxy.org/mitre-mobile-attack-course-of-action) - ATT&CK Mitigation Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *14* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mobile_attack_-_course_of_action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-course-of-action.json)] +[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-course-of-action.json)] ## Mobile Attack - Intrusion Set -[Mobile Attack - Intrusion Set](https://www.misp-project.org/galaxy.html#_mobile_attack_-_intrusion_set) - Name of ATT&CK Group +[Mobile Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-mobile-attack-intrusion-set) - Name of ATT&CK Group Category: *actor* - source: *https://github.com/mitre/cti* - total: *1* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mobile_attack_-_intrusion_set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-intrusion-set.json)] +[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-intrusion-set.json)] ## Mobile Attack - Malware -[Mobile Attack - Malware](https://www.misp-project.org/galaxy.html#_mobile_attack_-_malware) - Name of ATT&CK software +[Mobile Attack - Malware](https://www.misp-galaxy.org/mitre-mobile-attack-malware) - Name of ATT&CK software Category: *tool* - source: *https://github.com/mitre/cti* - total: *35* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mobile_attack_-_malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-malware.json)] +[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-malware.json)] ## Mobile Attack - Tool -[Mobile Attack - Tool](https://www.misp-project.org/galaxy.html#_mobile_attack_-_tool) - Name of ATT&CK software +[Mobile Attack - Tool](https://www.misp-galaxy.org/mitre-mobile-attack-tool) - Name of ATT&CK software Category: *tool* - source: *https://github.com/mitre/cti* - total: *1* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mobile_attack_-_tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-tool.json)] +[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-tool.json)] ## Pre Attack - Attack Pattern -[Pre Attack - Attack Pattern](https://www.misp-project.org/galaxy.html#_pre_attack_-_attack_pattern) - ATT&CK tactic +[Pre Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-pre-attack-attack-pattern) - ATT&CK tactic Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *174* elements -[[HTML](https://www.misp-project.org/galaxy.html#_pre_attack_-_attack_pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-attack-pattern.json)] +[[HTML](https://www.misp-galaxy.org/mitre-pre-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-attack-pattern.json)] ## Pre Attack - Intrusion Set -[Pre Attack - Intrusion Set](https://www.misp-project.org/galaxy.html#_pre_attack_-_intrusion_set) - Name of ATT&CK Group +[Pre Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-pre-attack-intrusion-set) - Name of ATT&CK Group Category: *actor* - source: *https://github.com/mitre/cti* - total: *7* elements -[[HTML](https://www.misp-project.org/galaxy.html#_pre_attack_-_intrusion_set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-intrusion-set.json)] +[[HTML](https://www.misp-galaxy.org/mitre-pre-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-intrusion-set.json)] ## mitre-tool -[mitre-tool](https://www.misp-project.org/galaxy.html#_mitre-tool) - Name of ATT&CK software +[mitre-tool](https://www.misp-galaxy.org/mitre-tool) - Name of ATT&CK software Category: *tool* - source: *https://github.com/mitre/cti* - total: *87* elements -[[HTML](https://www.misp-project.org/galaxy.html#_mitre-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-tool.json)] +[[HTML](https://www.misp-galaxy.org/mitre-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-tool.json)] ## NAICS -[NAICS](https://www.misp-project.org/galaxy.html#_naics) - The North American Industry Classification System or NAICS is a classification of business establishments by type of economic activity (the process of production). +[NAICS](https://www.misp-galaxy.org/naics) - The North American Industry Classification System or NAICS is a classification of business establishments by type of economic activity (the process of production). Category: *sector* - source: *North American Industry Classification System - NAICS* - total: *2125* elements -[[HTML](https://www.misp-project.org/galaxy.html#_naics)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/naics.json)] +[[HTML](https://www.misp-galaxy.org/naics)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/naics.json)] ## o365-exchange-techniques -[o365-exchange-techniques](https://www.misp-project.org/galaxy.html#_o365-exchange-techniques) - o365-exchange-techniques - Office365/Exchange related techniques by @johnLaTwC and @inversecos +[o365-exchange-techniques](https://www.misp-galaxy.org/o365-exchange-techniques) - o365-exchange-techniques - Office365/Exchange related techniques by @johnLaTwC and @inversecos Category: *guidelines* - source: *Open Sources, https://www.inversecos.com/2021/09/office365-attacks-bypassing-mfa.html* - total: *62* elements -[[HTML](https://www.misp-project.org/galaxy.html#_o365-exchange-techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/o365-exchange-techniques.json)] +[[HTML](https://www.misp-galaxy.org/o365-exchange-techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/o365-exchange-techniques.json)] ## online-service -[online-service](https://www.misp-project.org/galaxy.html#_online-service) - Known public online services. +[online-service](https://www.misp-galaxy.org/online-service) - Known public online services. Category: *tool* - source: *Open Sources* - total: *1* elements -[[HTML](https://www.misp-project.org/galaxy.html#_online-service)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/online-service.json)] +[[HTML](https://www.misp-galaxy.org/online-service)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/online-service.json)] ## Preventive Measure -[Preventive Measure](https://www.misp-project.org/galaxy.html#_preventive_measure) - Preventive measures based on the ransomware document overview as published in https://docs.google.com/spreadsheets/d/1TWS238xacAto-fLKh1n5uTsdijWdCEsGIM0Y0Hvmc5g/pubhtml# . The preventive measures are quite generic and can fit any standard Windows infrastructure and their security measures. +[Preventive Measure](https://www.misp-galaxy.org/preventive-measure) - Preventive measures based on the ransomware document overview as published in https://docs.google.com/spreadsheets/d/1TWS238xacAto-fLKh1n5uTsdijWdCEsGIM0Y0Hvmc5g/pubhtml# . The preventive measures are quite generic and can fit any standard Windows infrastructure and their security measures. Category: *measure* - source: *MISP Project* - total: *20* elements -[[HTML](https://www.misp-project.org/galaxy.html#_preventive_measure)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/preventive-measure.json)] +[[HTML](https://www.misp-galaxy.org/preventive-measure)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/preventive-measure.json)] ## Producer -[Producer](https://www.misp-project.org/galaxy.html#_producer) - List of threat intelligence producer from security vendors to CERTs including any producer of intelligence at large. +[Producer](https://www.misp-galaxy.org/producer) - List of threat intelligence producer from security vendors to CERTs including any producer of intelligence at large. -Category: *actor* - source: *MISP Project* - total: *15* elements +Category: *actor* - source: *MISP Project* - total: *21* elements -[[HTML](https://www.misp-project.org/galaxy.html#_producer)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/producer.json)] +[[HTML](https://www.misp-galaxy.org/producer)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/producer.json)] ## Ransomware -[Ransomware](https://www.misp-project.org/galaxy.html#_ransomware) - Ransomware galaxy based on https://docs.google.com/spreadsheets/d/1TWS238xacAto-fLKh1n5uTsdijWdCEsGIM0Y0Hvmc5g/pubhtml and http://pastebin.com/raw/GHgpWjar +[Ransomware](https://www.misp-galaxy.org/ransomware) - Ransomware galaxy based on https://docs.google.com/spreadsheets/d/1TWS238xacAto-fLKh1n5uTsdijWdCEsGIM0Y0Hvmc5g/pubhtml and http://pastebin.com/raw/GHgpWjar Category: *tool* - source: *Various* - total: *1706* elements -[[HTML](https://www.misp-project.org/galaxy.html#_ransomware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ransomware.json)] +[[HTML](https://www.misp-galaxy.org/ransomware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ransomware.json)] ## RAT -[RAT](https://www.misp-project.org/galaxy.html#_rat) - remote administration tool or remote access tool (RAT), also called sometimes remote access trojan, is a piece of software or programming that allows a remote "operator" to control a system as if they have physical access to that system. +[RAT](https://www.misp-galaxy.org/rat) - remote administration tool or remote access tool (RAT), also called sometimes remote access trojan, is a piece of software or programming that allows a remote "operator" to control a system as if they have physical access to that system. Category: *tool* - source: *MISP Project* - total: *266* elements -[[HTML](https://www.misp-project.org/galaxy.html#_rat)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/rat.json)] +[[HTML](https://www.misp-galaxy.org/rat)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/rat.json)] ## Regions UN M49 -[Regions UN M49](https://www.misp-project.org/galaxy.html#_regions_un_m49) - Regions based on UN M49. +[Regions UN M49](https://www.misp-galaxy.org/region) - Regions based on UN M49. Category: *location* - source: *https://unstats.un.org/unsd/methodology/m49/overview/* - total: *32* elements -[[HTML](https://www.misp-project.org/galaxy.html#_regions_un_m49)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/region.json)] +[[HTML](https://www.misp-galaxy.org/region)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/region.json)] ## rsit -[rsit](https://www.misp-project.org/galaxy.html#_rsit) - rsit +[rsit](https://www.misp-galaxy.org/rsit) - rsit Category: *rsit* - source: *https://github.com/enisaeu/Reference-Security-Incident-Taxonomy-Task-Force* - total: *39* elements -[[HTML](https://www.misp-project.org/galaxy.html#_rsit)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/rsit.json)] +[[HTML](https://www.misp-galaxy.org/rsit)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/rsit.json)] ## Sector -[Sector](https://www.misp-project.org/galaxy.html#_sector) - Activity sectors +[Sector](https://www.misp-galaxy.org/sector) - Activity sectors Category: *sector* - source: *CERT-EU* - total: *118* elements -[[HTML](https://www.misp-project.org/galaxy.html#_sector)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sector.json)] +[[HTML](https://www.misp-galaxy.org/sector)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sector.json)] ## Sigma-Rules -[Sigma-Rules](https://www.misp-project.org/galaxy.html#_sigma-rules) - MISP galaxy cluster based on Sigma Rules. +[Sigma-Rules](https://www.misp-galaxy.org/sigma-rules) - MISP galaxy cluster based on Sigma Rules. -Category: *rules* - source: *https://github.com/jstnk9/MISP/tree/main/misp-galaxy/sigma* - total: *2876* elements +Category: *rules* - source: *https://github.com/jstnk9/MISP/tree/main/misp-galaxy/sigma* - total: *2879* elements -[[HTML](https://www.misp-project.org/galaxy.html#_sigma-rules)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sigma-rules.json)] +[[HTML](https://www.misp-galaxy.org/sigma-rules)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sigma-rules.json)] ## Dark Patterns -[Dark Patterns](https://www.misp-project.org/galaxy.html#_dark_patterns) - Dark Patterns are user interface that tricks users into making decisions that benefit the interface's holder to the expense of the user. +[Dark Patterns](https://www.misp-galaxy.org/social-dark-patterns) - Dark Patterns are user interface that tricks users into making decisions that benefit the interface's holder to the expense of the user. Category: *dark-patterns* - source: *CIRCL* - total: *19* elements -[[HTML](https://www.misp-project.org/galaxy.html#_dark_patterns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/social-dark-patterns.json)] +[[HTML](https://www.misp-galaxy.org/social-dark-patterns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/social-dark-patterns.json)] ## SoD Matrix -[SoD Matrix](https://www.misp-project.org/galaxy.html#_sod_matrix) - SOD Matrix +[SoD Matrix](https://www.misp-galaxy.org/sod-matrix) - SOD Matrix Category: *sod-matrix* - source: *https://github.com/cudeso/SoD-Matrix* - total: *276* elements -[[HTML](https://www.misp-project.org/galaxy.html#_sod_matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sod-matrix.json)] +[[HTML](https://www.misp-galaxy.org/sod-matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sod-matrix.json)] ## Stealer -[Stealer](https://www.misp-project.org/galaxy.html#_stealer) - A list of malware stealer. +[Stealer](https://www.misp-galaxy.org/stealer) - A list of malware stealer. Category: *tool* - source: *Open Sources* - total: *16* elements -[[HTML](https://www.misp-project.org/galaxy.html#_stealer)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/stealer.json)] +[[HTML](https://www.misp-galaxy.org/stealer)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/stealer.json)] ## Surveillance Vendor -[Surveillance Vendor](https://www.misp-project.org/galaxy.html#_surveillance_vendor) - List of vendors selling surveillance technologies including malware, interception devices or computer exploitation services. +[Surveillance Vendor](https://www.misp-galaxy.org/surveillance-vendor) - List of vendors selling surveillance technologies including malware, interception devices or computer exploitation services. Category: *actor* - source: *MISP Project* - total: *50* elements -[[HTML](https://www.misp-project.org/galaxy.html#_surveillance_vendor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/surveillance-vendor.json)] +[[HTML](https://www.misp-galaxy.org/surveillance-vendor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/surveillance-vendor.json)] ## Target Information -[Target Information](https://www.misp-project.org/galaxy.html#_target_information) - Description of targets of threat actors. +[Target Information](https://www.misp-galaxy.org/target-information) - Description of targets of threat actors. Category: *target* - source: *Various* - total: *241* elements -[[HTML](https://www.misp-project.org/galaxy.html#_target_information)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/target-information.json)] +[[HTML](https://www.misp-galaxy.org/target-information)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/target-information.json)] ## TDS -[TDS](https://www.misp-project.org/galaxy.html#_tds) - TDS is a list of Traffic Direction System used by adversaries +[TDS](https://www.misp-galaxy.org/tds) - TDS is a list of Traffic Direction System used by adversaries Category: *tool* - source: *MISP Project* - total: *11* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tds)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tds.json)] +[[HTML](https://www.misp-galaxy.org/tds)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tds.json)] ## Tea Matrix -[Tea Matrix](https://www.misp-project.org/galaxy.html#_tea_matrix) - Tea Matrix +[Tea Matrix](https://www.misp-galaxy.org/tea-matrix) - Tea Matrix Category: *tea-matrix* - source: ** - total: *7* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tea_matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tea-matrix.json)] +[[HTML](https://www.misp-galaxy.org/tea-matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tea-matrix.json)] ## Threat Actor -[Threat Actor](https://www.misp-project.org/galaxy.html#_threat_actor) - Known or estimated adversary groups targeting organizations and employees. Adversary groups are regularly confused with their initial operation or campaign. threat-actor-classification meta can be used to clarify the understanding of the threat-actor if also considered as operation, campaign or activity group. +[Threat Actor](https://www.misp-galaxy.org/threat-actor) - Known or estimated adversary groups targeting organizations and employees. Adversary groups are regularly confused with their initial operation or campaign. threat-actor-classification meta can be used to clarify the understanding of the threat-actor if also considered as operation, campaign or activity group. -Category: *actor* - source: *MISP Project* - total: *671* elements +Category: *actor* - source: *MISP Project* - total: *675* elements -[[HTML](https://www.misp-project.org/galaxy.html#_threat_actor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/threat-actor.json)] +[[HTML](https://www.misp-galaxy.org/threat-actor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/threat-actor.json)] ## Tidal Campaigns -[Tidal Campaigns](https://www.misp-project.org/galaxy.html#_tidal_campaigns) - Tidal Campaigns Cluster +[Tidal Campaigns](https://www.misp-galaxy.org/tidal-campaigns) - Tidal Campaigns Cluster Category: *Campaigns* - source: *https://app-api.tidalcyber.com/api/v1/campaigns/* - total: *41* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tidal_campaigns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-campaigns.json)] +[[HTML](https://www.misp-galaxy.org/tidal-campaigns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-campaigns.json)] ## Tidal Groups -[Tidal Groups](https://www.misp-project.org/galaxy.html#_tidal_groups) - Tidal Groups Galaxy +[Tidal Groups](https://www.misp-galaxy.org/tidal-groups) - Tidal Groups Galaxy Category: *Threat Groups* - source: *https://app-api.tidalcyber.com/api/v1/groups/* - total: *163* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tidal_groups)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-groups.json)] +[[HTML](https://www.misp-galaxy.org/tidal-groups)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-groups.json)] ## Tidal References -[Tidal References](https://www.misp-project.org/galaxy.html#_tidal_references) - Tidal References Cluster +[Tidal References](https://www.misp-galaxy.org/tidal-references) - Tidal References Cluster Category: *References* - source: *https://app-api.tidalcyber.com/api/v1/references/* - total: *3872* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tidal_references)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-references.json)] +[[HTML](https://www.misp-galaxy.org/tidal-references)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-references.json)] ## Tidal Software -[Tidal Software](https://www.misp-project.org/galaxy.html#_tidal_software) - Tidal Software Cluster +[Tidal Software](https://www.misp-galaxy.org/tidal-software) - Tidal Software Cluster Category: *Software* - source: *https://app-api.tidalcyber.com/api/v1/software/* - total: *931* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tidal_software)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-software.json)] +[[HTML](https://www.misp-galaxy.org/tidal-software)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-software.json)] ## Tidal Tactic -[Tidal Tactic](https://www.misp-project.org/galaxy.html#_tidal_tactic) - Tidal Tactic Cluster +[Tidal Tactic](https://www.misp-galaxy.org/tidal-tactic) - Tidal Tactic Cluster Category: *Tactic* - source: *https://app-api.tidalcyber.com/api/v1/tactic/* - total: *14* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tidal_tactic)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-tactic.json)] +[[HTML](https://www.misp-galaxy.org/tidal-tactic)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-tactic.json)] ## Tidal Technique -[Tidal Technique](https://www.misp-project.org/galaxy.html#_tidal_technique) - Tidal Technique Cluster +[Tidal Technique](https://www.misp-galaxy.org/tidal-technique) - Tidal Technique Cluster Category: *Technique* - source: *https://app-api.tidalcyber.com/api/v1/technique/* - total: *201* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tidal_technique)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-technique.json)] +[[HTML](https://www.misp-galaxy.org/tidal-technique)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-technique.json)] ## Threat Matrix for storage services -[Threat Matrix for storage services](https://www.misp-project.org/galaxy.html#_threat_matrix_for_storage_services) - Microsoft Defender for Cloud threat matrix for storage services contains attack tactics, techniques and mitigations relevant storage services delivered by cloud providers. +[Threat Matrix for storage services](https://www.misp-galaxy.org/tmss) - Microsoft Defender for Cloud threat matrix for storage services contains attack tactics, techniques and mitigations relevant storage services delivered by cloud providers. Category: *tmss* - source: *https://github.com/microsoft/Threat-matrix-for-storage-services* - total: *40* elements -[[HTML](https://www.misp-project.org/galaxy.html#_threat_matrix_for_storage_services)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tmss.json)] +[[HTML](https://www.misp-galaxy.org/tmss)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tmss.json)] ## Tool -[Tool](https://www.misp-project.org/galaxy.html#_tool) - threat-actor-tools is an enumeration of tools used by adversaries. The list includes malware but also common software regularly used by the adversaries. +[Tool](https://www.misp-galaxy.org/tool) - threat-actor-tools is an enumeration of tools used by adversaries. The list includes malware but also common software regularly used by the adversaries. Category: *tool* - source: *MISP Project* - total: *603* elements -[[HTML](https://www.misp-project.org/galaxy.html#_tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tool.json)] +[[HTML](https://www.misp-galaxy.org/tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tool.json)] ## UAVs/UCAVs -[UAVs/UCAVs](https://www.misp-project.org/galaxy.html#_uavs/ucavs) - Unmanned Aerial Vehicles / Unmanned Combat Aerial Vehicles +[UAVs/UCAVs](https://www.misp-galaxy.org/uavs) - Unmanned Aerial Vehicles / Unmanned Combat Aerial Vehicles Category: *military equipment* - source: *Popular Mechanics* - total: *36* elements -[[HTML](https://www.misp-project.org/galaxy.html#_uavs/ucavs)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/uavs.json)] +[[HTML](https://www.misp-galaxy.org/uavs)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/uavs.json)] ## UKHSA Culture Collections -[UKHSA Culture Collections](https://www.misp-project.org/galaxy.html#_ukhsa_culture_collections) - UK Health Security Agency Culture Collections represent deposits of cultures that consist of expertly preserved, authenticated cell lines and microbial strains of known provenance. +[UKHSA Culture Collections](https://www.misp-galaxy.org/ukhsa-culture-collections) - UK Health Security Agency Culture Collections represent deposits of cultures that consist of expertly preserved, authenticated cell lines and microbial strains of known provenance. Category: *virus* - source: *https://www.culturecollections.org.uk* - total: *6667* elements -[[HTML](https://www.misp-project.org/galaxy.html#_ukhsa_culture_collections)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ukhsa-culture-collections.json)] +[[HTML](https://www.misp-galaxy.org/ukhsa-culture-collections)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ukhsa-culture-collections.json)] # Online documentation diff --git a/tools/generate-index.py b/tools/generate-index.py index c163736..56bdc94 100755 --- a/tools/generate-index.py +++ b/tools/generate-index.py @@ -13,6 +13,7 @@ def gen_galaxy_tag(galaxy_name, cluster_name): # return 'misp-galaxy:{}="{}"'.format(galaxy_name, cluster_name) return '{}={}'.format(galaxy_name, cluster_name) + galaxies_fnames = [] files_to_ignore = ["cancer.json", "handicap.json"] pathClusters = '../clusters' @@ -28,10 +29,10 @@ for f in galaxies_fnames: with open(os.path.join(pathClusters, f)) as fr: cluster = json.load(fr) output = f'{output}\n## {cluster["name"]}\n\n' - link = cluster["name"].replace(" ", "_").lower() + link = f.split(".")[0] total = len(cluster["values"]) - output = f'{output}[{cluster["name"]}](https://www.misp-project.org/galaxy.html#_{link}) - {cluster["description"]}\n' + output = f'{output}[{cluster["name"]}](https://www.misp-galaxy.org/{link}) - {cluster["description"]}\n' output = f'{output}\nCategory: *{cluster["category"]}* - source: *{cluster["source"]}* - total: *{total}* elements\n' - output = f'{output}\n[[HTML](https://www.misp-project.org/galaxy.html#_{link})] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/{f})]\n' + output = f'{output}\n[[HTML](https://www.misp-galaxy.org/{link})] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/{f})]\n' print(output) From 20ff10b5b1741800a4b4cde397e9425df5143753 Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Tue, 28 May 2024 10:09:11 +0200 Subject: [PATCH 5/5] fix: [readme] update index + hide deprecated galaxies --- README.md | 101 +---- tools/generate-index.py | 38 -- tools/index.txt | 689 ------------------------------ tools/update_README_with_index.py | 68 +++ 4 files changed, 71 insertions(+), 825 deletions(-) delete mode 100755 tools/generate-index.py delete mode 100644 tools/index.txt create mode 100755 tools/update_README_with_index.py diff --git a/README.md b/README.md index ebf48fe..efce81f 100644 --- a/README.md +++ b/README.md @@ -293,7 +293,7 @@ Category: *d3fend* - source: *https://d3fend.mitre.org/* - total: *171* elements ## mitre-data-component -[mitre-data-component](https://www.misp-galaxy.org/mitre-data-component) - Data components are parts of data sources. +[mitre-data-component](https://www.misp-galaxy.org/mitre-data-component) - Data components are parts of data sources. Category: *data-component* - source: *https://github.com/mitre/cti* - total: *117* elements @@ -301,52 +301,12 @@ Category: *data-component* - source: *https://github.com/mitre/cti* - total: *11 ## mitre-data-source -[mitre-data-source](https://www.misp-galaxy.org/mitre-data-source) - Data sources represent the various subjects/topics of information that can be collected by sensors/logs. +[mitre-data-source](https://www.misp-galaxy.org/mitre-data-source) - Data sources represent the various subjects/topics of information that can be collected by sensors/logs. Category: *data-source* - source: *https://github.com/mitre/cti* - total: *40* elements [[HTML](https://www.misp-galaxy.org/mitre-data-source)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-data-source.json)] -## Enterprise Attack - Attack Pattern - -[Enterprise Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-enterprise-attack-attack-pattern) - ATT&CK tactic - -Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *219* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-attack-pattern.json)] - -## Enterprise Attack - Course of Action - -[Enterprise Attack - Course of Action](https://www.misp-galaxy.org/mitre-enterprise-attack-course-of-action) - ATT&CK Mitigation - -Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *215* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-course-of-action.json)] - -## Enterprise Attack - Intrusion Set - -[Enterprise Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-enterprise-attack-intrusion-set) - Name of ATT&CK Group - -Category: *actor* - source: *https://github.com/mitre/cti* - total: *69* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-intrusion-set.json)] - -## Enterprise Attack - Malware - -[Enterprise Attack - Malware](https://www.misp-galaxy.org/mitre-enterprise-attack-malware) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *188* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-malware.json)] - -## Enterprise Attack - Tool - -[Enterprise Attack - Tool](https://www.misp-galaxy.org/mitre-enterprise-attack-tool) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *45* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-tool.json)] - ## Assets [Assets](https://www.misp-galaxy.org/mitre-ics-assets) - A list of asset categories that are commonly found in industrial control systems. @@ -411,62 +371,6 @@ Category: *tool* - source: *https://github.com/mitre/cti* - total: *705* element [[HTML](https://www.misp-galaxy.org/mitre-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-malware.json)] -## Mobile Attack - Attack Pattern - -[Mobile Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-mobile-attack-attack-pattern) - ATT&CK tactic - -Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *76* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-attack-pattern.json)] - -## Mobile Attack - Course of Action - -[Mobile Attack - Course of Action](https://www.misp-galaxy.org/mitre-mobile-attack-course-of-action) - ATT&CK Mitigation - -Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *14* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-course-of-action.json)] - -## Mobile Attack - Intrusion Set - -[Mobile Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-mobile-attack-intrusion-set) - Name of ATT&CK Group - -Category: *actor* - source: *https://github.com/mitre/cti* - total: *1* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-intrusion-set.json)] - -## Mobile Attack - Malware - -[Mobile Attack - Malware](https://www.misp-galaxy.org/mitre-mobile-attack-malware) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *35* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-malware.json)] - -## Mobile Attack - Tool - -[Mobile Attack - Tool](https://www.misp-galaxy.org/mitre-mobile-attack-tool) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *1* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-tool.json)] - -## Pre Attack - Attack Pattern - -[Pre Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-pre-attack-attack-pattern) - ATT&CK tactic - -Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *174* elements - -[[HTML](https://www.misp-galaxy.org/mitre-pre-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-attack-pattern.json)] - -## Pre Attack - Intrusion Set - -[Pre Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-pre-attack-intrusion-set) - Name of ATT&CK Group - -Category: *actor* - source: *https://github.com/mitre/cti* - total: *7* elements - -[[HTML](https://www.misp-galaxy.org/mitre-pre-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-intrusion-set.json)] - ## mitre-tool [mitre-tool](https://www.misp-galaxy.org/mitre-tool) - Name of ATT&CK software @@ -707,6 +611,7 @@ Category: *virus* - source: *https://www.culturecollections.org.uk* - total: *66 [[HTML](https://www.misp-galaxy.org/ukhsa-culture-collections)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ukhsa-culture-collections.json)] + # Online documentation The [misp-galaxy.org](https://misp-galaxy.org) website provides an easily navigable resource for all MISP galaxy clusters. diff --git a/tools/generate-index.py b/tools/generate-index.py deleted file mode 100755 index 56bdc94..0000000 --- a/tools/generate-index.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env python3 -import json -import os -import argparse - - -parser = argparse.ArgumentParser(description='Generate a markdown index with all the galaxy available') -parser.add_argument("-v", "--verbose", action='store_true', help='Verbose output') -args = parser.parse_args() - - -def gen_galaxy_tag(galaxy_name, cluster_name): - # return 'misp-galaxy:{}="{}"'.format(galaxy_name, cluster_name) - return '{}={}'.format(galaxy_name, cluster_name) - - -galaxies_fnames = [] -files_to_ignore = ["cancer.json", "handicap.json"] -pathClusters = '../clusters' - -for f in os.listdir(pathClusters): - if '.json' in f and f not in files_to_ignore: - galaxies_fnames.append(f) - -galaxies_fnames.sort() -output = "" - -for f in galaxies_fnames: - with open(os.path.join(pathClusters, f)) as fr: - cluster = json.load(fr) - output = f'{output}\n## {cluster["name"]}\n\n' - link = f.split(".")[0] - total = len(cluster["values"]) - output = f'{output}[{cluster["name"]}](https://www.misp-galaxy.org/{link}) - {cluster["description"]}\n' - output = f'{output}\nCategory: *{cluster["category"]}* - source: *{cluster["source"]}* - total: *{total}* elements\n' - output = f'{output}\n[[HTML](https://www.misp-galaxy.org/{link})] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/{f})]\n' - -print(output) diff --git a/tools/index.txt b/tools/index.txt deleted file mode 100644 index a9eec7e..0000000 --- a/tools/index.txt +++ /dev/null @@ -1,689 +0,0 @@ - -## 360.net Threat Actors - -[360.net Threat Actors](https://www.misp-galaxy.org/360net) - Known or estimated adversary groups as identified by 360.net. - -Category: *actor* - source: *https://apt.360.net/aptlist* - total: *42* elements - -[[HTML](https://www.misp-galaxy.org/360net)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/360net.json)] - -## Ammunitions - -[Ammunitions](https://www.misp-galaxy.org/ammunitions) - Common ammunitions galaxy - -Category: *firearm* - source: *https://ammo.com/* - total: *410* elements - -[[HTML](https://www.misp-galaxy.org/ammunitions)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ammunitions.json)] - -## Android - -[Android](https://www.misp-galaxy.org/android) - Android malware galaxy based on multiple open sources. - -Category: *tool* - source: *Open Sources* - total: *433* elements - -[[HTML](https://www.misp-galaxy.org/android)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/android.json)] - -## Azure Threat Research Matrix - -[Azure Threat Research Matrix](https://www.misp-galaxy.org/atrm) - The purpose of the Azure Threat Research Matrix (ATRM) is to educate readers on the potential of Azure-based tactics, techniques, and procedures (TTPs). It is not to teach how to weaponize or specifically abuse them. For this reason, some specific commands will be obfuscated or parts will be omitted to prevent abuse. - -Category: *atrm* - source: *https://github.com/microsoft/Azure-Threat-Research-Matrix* - total: *90* elements - -[[HTML](https://www.misp-galaxy.org/atrm)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/atrm.json)] - -## attck4fraud - -[attck4fraud](https://www.misp-galaxy.org/attck4fraud) - attck4fraud - Principles of MITRE ATT&CK in the fraud domain - -Category: *guidelines* - source: *Open Sources* - total: *71* elements - -[[HTML](https://www.misp-galaxy.org/attck4fraud)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/attck4fraud.json)] - -## Backdoor - -[Backdoor](https://www.misp-galaxy.org/backdoor) - A list of backdoor malware. - -Category: *tool* - source: *Open Sources* - total: *28* elements - -[[HTML](https://www.misp-galaxy.org/backdoor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/backdoor.json)] - -## Banker - -[Banker](https://www.misp-galaxy.org/banker) - A list of banker malware. - -Category: *tool* - source: *Open Sources* - total: *53* elements - -[[HTML](https://www.misp-galaxy.org/banker)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/banker.json)] - -## Bhadra Framework - -[Bhadra Framework](https://www.misp-galaxy.org/bhadra-framework) - Bhadra Threat Modeling Framework - -Category: *mobile* - source: *https://arxiv.org/pdf/2005.05110.pdf* - total: *47* elements - -[[HTML](https://www.misp-galaxy.org/bhadra-framework)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/bhadra-framework.json)] - -## Botnet - -[Botnet](https://www.misp-galaxy.org/botnet) - botnet galaxy - -Category: *tool* - source: *MISP Project* - total: *130* elements - -[[HTML](https://www.misp-galaxy.org/botnet)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/botnet.json)] - -## Branded Vulnerability - -[Branded Vulnerability](https://www.misp-galaxy.org/branded_vulnerability) - List of known vulnerabilities and attacks with a branding - -Category: *vulnerability* - source: *Open Sources* - total: *14* elements - -[[HTML](https://www.misp-galaxy.org/branded_vulnerability)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/branded_vulnerability.json)] - -## Cert EU GovSector - -[Cert EU GovSector](https://www.misp-galaxy.org/cert-eu-govsector) - Cert EU GovSector - -Category: *sector* - source: *CERT-EU* - total: *6* elements - -[[HTML](https://www.misp-galaxy.org/cert-eu-govsector)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cert-eu-govsector.json)] - -## China Defence Universities Tracker - -[China Defence Universities Tracker](https://www.misp-galaxy.org/china-defence-universities) - The China Defence Universities Tracker is a database of Chinese institutions engaged in military or security-related science and technology research. It was created by ASPI’s International Cyber Policy Centre. - -Category: *academic-institution* - source: *ASPI International Cyber Policy Centre* - total: *159* elements - -[[HTML](https://www.misp-galaxy.org/china-defence-universities)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/china-defence-universities.json)] - -## CONCORDIA Mobile Modelling Framework - Attack Pattern - -[CONCORDIA Mobile Modelling Framework - Attack Pattern](https://www.misp-galaxy.org/cmtmf-attack-pattern) - A list of Techniques in CONCORDIA Mobile Modelling Framework. - -Category: *cmtmf-attack-pattern* - source: *https://5g4iot.vlab.cs.hioa.no/* - total: *93* elements - -[[HTML](https://www.misp-galaxy.org/cmtmf-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cmtmf-attack-pattern.json)] - -## Country - -[Country](https://www.misp-galaxy.org/country) - Country meta information based on the database provided by geonames.org. - -Category: *country* - source: *MISP Project* - total: *252* elements - -[[HTML](https://www.misp-galaxy.org/country)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/country.json)] - -## Cryptominers - -[Cryptominers](https://www.misp-galaxy.org/cryptominers) - A list of cryptominer and cryptojacker malware. - -Category: *Cryptominers* - source: *Open Source Intelligence* - total: *5* elements - -[[HTML](https://www.misp-galaxy.org/cryptominers)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/cryptominers.json)] - -## Actor Types - -[Actor Types](https://www.misp-galaxy.org/disarm-actortypes) - DISARM is a framework designed for describing and understanding disinformation incidents. - -Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *33* elements - -[[HTML](https://www.misp-galaxy.org/disarm-actortypes)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-actortypes.json)] - -## Countermeasures - -[Countermeasures](https://www.misp-galaxy.org/disarm-countermeasures) - DISARM is a framework designed for describing and understanding disinformation incidents. - -Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *139* elements - -[[HTML](https://www.misp-galaxy.org/disarm-countermeasures)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-countermeasures.json)] - -## Detections - -[Detections](https://www.misp-galaxy.org/disarm-detections) - DISARM is a framework designed for describing and understanding disinformation incidents. - -Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *94* elements - -[[HTML](https://www.misp-galaxy.org/disarm-detections)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-detections.json)] - -## Techniques - -[Techniques](https://www.misp-galaxy.org/disarm-techniques) - DISARM is a framework designed for describing and understanding disinformation incidents. - -Category: *disarm* - source: *https://github.com/DISARMFoundation/DISARMframeworks* - total: *298* elements - -[[HTML](https://www.misp-galaxy.org/disarm-techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/disarm-techniques.json)] - -## Election guidelines - -[Election guidelines](https://www.misp-galaxy.org/election-guidelines) - Universal Development and Security Guidelines as Applicable to Election Technology. - -Category: *guidelines* - source: *Open Sources* - total: *23* elements - -[[HTML](https://www.misp-galaxy.org/election-guidelines)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/election-guidelines.json)] - -## Entity - -[Entity](https://www.misp-galaxy.org/entity) - Description of entities that can be involved in events. - -Category: *actor* - source: *MISP Project* - total: *4* elements - -[[HTML](https://www.misp-galaxy.org/entity)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/entity.json)] - -## Exploit-Kit - -[Exploit-Kit](https://www.misp-galaxy.org/exploit-kit) - Exploit-Kit is an enumeration of some exploitation kits used by adversaries. The list includes document, browser and router exploit kits.It's not meant to be totally exhaustive but aim at covering the most seen in the past 5 years - -Category: *tool* - source: *MISP Project* - total: *52* elements - -[[HTML](https://www.misp-galaxy.org/exploit-kit)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/exploit-kit.json)] - -## Firearms - -[Firearms](https://www.misp-galaxy.org/firearms) - Common firearms galaxy - -Category: *firearm* - source: *https://www.impactguns.com* - total: *5953* elements - -[[HTML](https://www.misp-galaxy.org/firearms)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/firearms.json)] - -## FIRST DNS Abuse Techniques Matrix - -[FIRST DNS Abuse Techniques Matrix](https://www.misp-galaxy.org/first-dns) - The Domain Name System (DNS) is a critical part of the Internet, including mapping domain names to IP addresses. Malicious threat actors use domain names, their corresponding technical resources, and other parts of the DNS infrastructure, including its protocols, for their malicious cyber operations. CERTs are confronted with reported DNS abuse on a continuous basis, and rely heavily on DNS analysis and infrastructure to protect their constituencies. Understanding the international customary norms applicable for detecting and mitigating DNS abuse from the perspective of the global incident response community is critical for the open Internet’s stability, security and resiliency. See also https://www.first.org/global/sigs/dns/ for more information. - -Category: *first-dns* - source: *https://www.first.org/global/sigs/dns/* - total: *21* elements - -[[HTML](https://www.misp-galaxy.org/first-dns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/first-dns.json)] - -## Intelligence Agencies - -[Intelligence Agencies](https://www.misp-galaxy.org/intelligence-agencies) - List of intelligence agencies - -Category: *Intelligence Agencies* - source: *https://en.wikipedia.org/wiki/List_of_intelligence_agencies* - total: *436* elements - -[[HTML](https://www.misp-galaxy.org/intelligence-agencies)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/intelligence-agencies.json)] - -## INTERPOL DWVA Taxonomy - -[INTERPOL DWVA Taxonomy](https://www.misp-galaxy.org/interpol-dwva) - This taxonomy defines common forms of abuses and entities that represent real-world actors and service that are part of a larger Darknet- and Cryptoasset Ecosystems. - -Category: *dwva* - source: *https://interpol-innovation-centre.github.io/DW-VA-Taxonomy/* - total: *94* elements - -[[HTML](https://www.misp-galaxy.org/interpol-dwva)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/interpol-dwva.json)] - -## Malpedia - -[Malpedia](https://www.misp-galaxy.org/malpedia) - Malware galaxy cluster based on Malpedia. - -Category: *tool* - source: *Malpedia* - total: *3039* elements - -[[HTML](https://www.misp-galaxy.org/malpedia)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/malpedia.json)] - -## Microsoft Activity Group actor - -[Microsoft Activity Group actor](https://www.misp-galaxy.org/microsoft-activity-group) - Activity groups as described by Microsoft - -Category: *actor* - source: *MISP Project* - total: *79* elements - -[[HTML](https://www.misp-galaxy.org/microsoft-activity-group)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/microsoft-activity-group.json)] - -## Misinformation Pattern - -[Misinformation Pattern](https://www.misp-galaxy.org/misinfosec-amitt-misinformation-pattern) - AM!TT Technique - -Category: *misinformation-pattern* - source: *https://github.com/misinfosecproject/amitt_framework* - total: *61* elements - -[[HTML](https://www.misp-galaxy.org/misinfosec-amitt-misinformation-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/misinfosec-amitt-misinformation-pattern.json)] - -## MITRE ATLAS Attack Pattern - -[MITRE ATLAS Attack Pattern](https://www.misp-galaxy.org/mitre-atlas-attack-pattern) - MITRE ATLAS Attack Pattern - Adversarial Threat Landscape for Artificial-Intelligence Systems - -Category: *attack-pattern* - source: *https://github.com/mitre-atlas/atlas-navigator-data* - total: *82* elements - -[[HTML](https://www.misp-galaxy.org/mitre-atlas-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-atlas-attack-pattern.json)] - -## MITRE ATLAS Course of Action - -[MITRE ATLAS Course of Action](https://www.misp-galaxy.org/mitre-atlas-course-of-action) - MITRE ATLAS Mitigation - Adversarial Threat Landscape for Artificial-Intelligence Systems - -Category: *course-of-action* - source: *https://github.com/mitre-atlas/atlas-navigator-data* - total: *20* elements - -[[HTML](https://www.misp-galaxy.org/mitre-atlas-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-atlas-course-of-action.json)] - -## Attack Pattern - -[Attack Pattern](https://www.misp-galaxy.org/mitre-attack-pattern) - ATT&CK tactic - -Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *1141* elements - -[[HTML](https://www.misp-galaxy.org/mitre-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-attack-pattern.json)] - -## Course of Action - -[Course of Action](https://www.misp-galaxy.org/mitre-course-of-action) - ATT&CK Mitigation - -Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *281* elements - -[[HTML](https://www.misp-galaxy.org/mitre-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-course-of-action.json)] - -## MITRE D3FEND - -[MITRE D3FEND](https://www.misp-galaxy.org/mitre-d3fend) - A knowledge graph of cybersecurity countermeasures. - -Category: *d3fend* - source: *https://d3fend.mitre.org/* - total: *171* elements - -[[HTML](https://www.misp-galaxy.org/mitre-d3fend)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-d3fend.json)] - -## mitre-data-component - -[mitre-data-component](https://www.misp-galaxy.org/mitre-data-component) - Data components are parts of data sources. - -Category: *data-component* - source: *https://github.com/mitre/cti* - total: *117* elements - -[[HTML](https://www.misp-galaxy.org/mitre-data-component)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-data-component.json)] - -## mitre-data-source - -[mitre-data-source](https://www.misp-galaxy.org/mitre-data-source) - Data sources represent the various subjects/topics of information that can be collected by sensors/logs. - -Category: *data-source* - source: *https://github.com/mitre/cti* - total: *40* elements - -[[HTML](https://www.misp-galaxy.org/mitre-data-source)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-data-source.json)] - -## Enterprise Attack - Attack Pattern - -[Enterprise Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-enterprise-attack-attack-pattern) - ATT&CK tactic - -Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *219* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-attack-pattern.json)] - -## Enterprise Attack - Course of Action - -[Enterprise Attack - Course of Action](https://www.misp-galaxy.org/mitre-enterprise-attack-course-of-action) - ATT&CK Mitigation - -Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *215* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-course-of-action.json)] - -## Enterprise Attack - Intrusion Set - -[Enterprise Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-enterprise-attack-intrusion-set) - Name of ATT&CK Group - -Category: *actor* - source: *https://github.com/mitre/cti* - total: *69* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-intrusion-set.json)] - -## Enterprise Attack - Malware - -[Enterprise Attack - Malware](https://www.misp-galaxy.org/mitre-enterprise-attack-malware) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *188* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-malware.json)] - -## Enterprise Attack - Tool - -[Enterprise Attack - Tool](https://www.misp-galaxy.org/mitre-enterprise-attack-tool) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *45* elements - -[[HTML](https://www.misp-galaxy.org/mitre-enterprise-attack-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-enterprise-attack-tool.json)] - -## Assets - -[Assets](https://www.misp-galaxy.org/mitre-ics-assets) - A list of asset categories that are commonly found in industrial control systems. - -Category: *asset* - source: *https://collaborate.mitre.org/attackics/index.php/All_Assets* - total: *7* elements - -[[HTML](https://www.misp-galaxy.org/mitre-ics-assets)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-assets.json)] - -## Groups - -[Groups](https://www.misp-galaxy.org/mitre-ics-groups) - Groups are sets of related intrusion activity that are tracked by a common name in the security community. Groups are also sometimes referred to as campaigns or intrusion sets. Some groups have multiple names associated with the same set of activities due to various organizations tracking the same set of activities by different names. Groups are mapped to publicly reported technique use and referenced in the ATT&CK for ICS knowledge base. Groups are also mapped to reported software used during intrusions. - -Category: *actor* - source: *https://collaborate.mitre.org/attackics/index.php/Groups* - total: *10* elements - -[[HTML](https://www.misp-galaxy.org/mitre-ics-groups)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-groups.json)] - -## Levels - -[Levels](https://www.misp-galaxy.org/mitre-ics-levels) - Based on the Purdue Model to aid ATT&CK for ICS users to understand which techniques are applicable to their environment. - -Category: *level* - source: *https://collaborate.mitre.org/attackics/index.php/All_Levels* - total: *3* elements - -[[HTML](https://www.misp-galaxy.org/mitre-ics-levels)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-levels.json)] - -## Software - -[Software](https://www.misp-galaxy.org/mitre-ics-software) - Software is a generic term for custom or commercial code, operating system utilities, open-source software, or other tools used to conduct behavior modeled in ATT&CK for ICS. - -Category: *tool* - source: *https://collaborate.mitre.org/attackics/index.php/Software* - total: *17* elements - -[[HTML](https://www.misp-galaxy.org/mitre-ics-software)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-software.json)] - -## Tactics - -[Tactics](https://www.misp-galaxy.org/mitre-ics-tactics) - A list of all 11 tactics in ATT&CK for ICS - -Category: *tactic* - source: *https://collaborate.mitre.org/attackics/index.php/All_Tactics* - total: *9* elements - -[[HTML](https://www.misp-galaxy.org/mitre-ics-tactics)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-tactics.json)] - -## Techniques - -[Techniques](https://www.misp-galaxy.org/mitre-ics-techniques) - A list of Techniques in ATT&CK for ICS. - -Category: *attack-pattern* - source: *https://collaborate.mitre.org/attackics/index.php/All_Techniques* - total: *78* elements - -[[HTML](https://www.misp-galaxy.org/mitre-ics-techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-ics-techniques.json)] - -## Intrusion Set - -[Intrusion Set](https://www.misp-galaxy.org/mitre-intrusion-set) - Name of ATT&CK Group - -Category: *actor* - source: *https://github.com/mitre/cti* - total: *165* elements - -[[HTML](https://www.misp-galaxy.org/mitre-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-intrusion-set.json)] - -## Malware - -[Malware](https://www.misp-galaxy.org/mitre-malware) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *705* elements - -[[HTML](https://www.misp-galaxy.org/mitre-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-malware.json)] - -## Mobile Attack - Attack Pattern - -[Mobile Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-mobile-attack-attack-pattern) - ATT&CK tactic - -Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *76* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-attack-pattern.json)] - -## Mobile Attack - Course of Action - -[Mobile Attack - Course of Action](https://www.misp-galaxy.org/mitre-mobile-attack-course-of-action) - ATT&CK Mitigation - -Category: *course-of-action* - source: *https://github.com/mitre/cti* - total: *14* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-course-of-action)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-course-of-action.json)] - -## Mobile Attack - Intrusion Set - -[Mobile Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-mobile-attack-intrusion-set) - Name of ATT&CK Group - -Category: *actor* - source: *https://github.com/mitre/cti* - total: *1* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-intrusion-set.json)] - -## Mobile Attack - Malware - -[Mobile Attack - Malware](https://www.misp-galaxy.org/mitre-mobile-attack-malware) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *35* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-malware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-malware.json)] - -## Mobile Attack - Tool - -[Mobile Attack - Tool](https://www.misp-galaxy.org/mitre-mobile-attack-tool) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *1* elements - -[[HTML](https://www.misp-galaxy.org/mitre-mobile-attack-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-mobile-attack-tool.json)] - -## Pre Attack - Attack Pattern - -[Pre Attack - Attack Pattern](https://www.misp-galaxy.org/mitre-pre-attack-attack-pattern) - ATT&CK tactic - -Category: *attack-pattern* - source: *https://github.com/mitre/cti* - total: *174* elements - -[[HTML](https://www.misp-galaxy.org/mitre-pre-attack-attack-pattern)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-attack-pattern.json)] - -## Pre Attack - Intrusion Set - -[Pre Attack - Intrusion Set](https://www.misp-galaxy.org/mitre-pre-attack-intrusion-set) - Name of ATT&CK Group - -Category: *actor* - source: *https://github.com/mitre/cti* - total: *7* elements - -[[HTML](https://www.misp-galaxy.org/mitre-pre-attack-intrusion-set)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-pre-attack-intrusion-set.json)] - -## mitre-tool - -[mitre-tool](https://www.misp-galaxy.org/mitre-tool) - Name of ATT&CK software - -Category: *tool* - source: *https://github.com/mitre/cti* - total: *87* elements - -[[HTML](https://www.misp-galaxy.org/mitre-tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/mitre-tool.json)] - -## NAICS - -[NAICS](https://www.misp-galaxy.org/naics) - The North American Industry Classification System or NAICS is a classification of business establishments by type of economic activity (the process of production). - -Category: *sector* - source: *North American Industry Classification System - NAICS* - total: *2125* elements - -[[HTML](https://www.misp-galaxy.org/naics)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/naics.json)] - -## o365-exchange-techniques - -[o365-exchange-techniques](https://www.misp-galaxy.org/o365-exchange-techniques) - o365-exchange-techniques - Office365/Exchange related techniques by @johnLaTwC and @inversecos - -Category: *guidelines* - source: *Open Sources, https://www.inversecos.com/2021/09/office365-attacks-bypassing-mfa.html* - total: *62* elements - -[[HTML](https://www.misp-galaxy.org/o365-exchange-techniques)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/o365-exchange-techniques.json)] - -## online-service - -[online-service](https://www.misp-galaxy.org/online-service) - Known public online services. - -Category: *tool* - source: *Open Sources* - total: *1* elements - -[[HTML](https://www.misp-galaxy.org/online-service)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/online-service.json)] - -## Preventive Measure - -[Preventive Measure](https://www.misp-galaxy.org/preventive-measure) - Preventive measures based on the ransomware document overview as published in https://docs.google.com/spreadsheets/d/1TWS238xacAto-fLKh1n5uTsdijWdCEsGIM0Y0Hvmc5g/pubhtml# . The preventive measures are quite generic and can fit any standard Windows infrastructure and their security measures. - -Category: *measure* - source: *MISP Project* - total: *20* elements - -[[HTML](https://www.misp-galaxy.org/preventive-measure)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/preventive-measure.json)] - -## Producer - -[Producer](https://www.misp-galaxy.org/producer) - List of threat intelligence producer from security vendors to CERTs including any producer of intelligence at large. - -Category: *actor* - source: *MISP Project* - total: *21* elements - -[[HTML](https://www.misp-galaxy.org/producer)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/producer.json)] - -## Ransomware - -[Ransomware](https://www.misp-galaxy.org/ransomware) - Ransomware galaxy based on https://docs.google.com/spreadsheets/d/1TWS238xacAto-fLKh1n5uTsdijWdCEsGIM0Y0Hvmc5g/pubhtml and http://pastebin.com/raw/GHgpWjar - -Category: *tool* - source: *Various* - total: *1706* elements - -[[HTML](https://www.misp-galaxy.org/ransomware)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ransomware.json)] - -## RAT - -[RAT](https://www.misp-galaxy.org/rat) - remote administration tool or remote access tool (RAT), also called sometimes remote access trojan, is a piece of software or programming that allows a remote "operator" to control a system as if they have physical access to that system. - -Category: *tool* - source: *MISP Project* - total: *266* elements - -[[HTML](https://www.misp-galaxy.org/rat)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/rat.json)] - -## Regions UN M49 - -[Regions UN M49](https://www.misp-galaxy.org/region) - Regions based on UN M49. - -Category: *location* - source: *https://unstats.un.org/unsd/methodology/m49/overview/* - total: *32* elements - -[[HTML](https://www.misp-galaxy.org/region)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/region.json)] - -## rsit - -[rsit](https://www.misp-galaxy.org/rsit) - rsit - -Category: *rsit* - source: *https://github.com/enisaeu/Reference-Security-Incident-Taxonomy-Task-Force* - total: *39* elements - -[[HTML](https://www.misp-galaxy.org/rsit)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/rsit.json)] - -## Sector - -[Sector](https://www.misp-galaxy.org/sector) - Activity sectors - -Category: *sector* - source: *CERT-EU* - total: *118* elements - -[[HTML](https://www.misp-galaxy.org/sector)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sector.json)] - -## Sigma-Rules - -[Sigma-Rules](https://www.misp-galaxy.org/sigma-rules) - MISP galaxy cluster based on Sigma Rules. - -Category: *rules* - source: *https://github.com/jstnk9/MISP/tree/main/misp-galaxy/sigma* - total: *2888* elements - -[[HTML](https://www.misp-galaxy.org/sigma-rules)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sigma-rules.json)] - -## Dark Patterns - -[Dark Patterns](https://www.misp-galaxy.org/social-dark-patterns) - Dark Patterns are user interface that tricks users into making decisions that benefit the interface's holder to the expense of the user. - -Category: *dark-patterns* - source: *CIRCL* - total: *19* elements - -[[HTML](https://www.misp-galaxy.org/social-dark-patterns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/social-dark-patterns.json)] - -## SoD Matrix - -[SoD Matrix](https://www.misp-galaxy.org/sod-matrix) - SOD Matrix - -Category: *sod-matrix* - source: *https://github.com/cudeso/SoD-Matrix* - total: *276* elements - -[[HTML](https://www.misp-galaxy.org/sod-matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/sod-matrix.json)] - -## Stealer - -[Stealer](https://www.misp-galaxy.org/stealer) - A list of malware stealer. - -Category: *tool* - source: *Open Sources* - total: *16* elements - -[[HTML](https://www.misp-galaxy.org/stealer)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/stealer.json)] - -## Surveillance Vendor - -[Surveillance Vendor](https://www.misp-galaxy.org/surveillance-vendor) - List of vendors selling surveillance technologies including malware, interception devices or computer exploitation services. - -Category: *actor* - source: *MISP Project* - total: *50* elements - -[[HTML](https://www.misp-galaxy.org/surveillance-vendor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/surveillance-vendor.json)] - -## Target Information - -[Target Information](https://www.misp-galaxy.org/target-information) - Description of targets of threat actors. - -Category: *target* - source: *Various* - total: *241* elements - -[[HTML](https://www.misp-galaxy.org/target-information)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/target-information.json)] - -## TDS - -[TDS](https://www.misp-galaxy.org/tds) - TDS is a list of Traffic Direction System used by adversaries - -Category: *tool* - source: *MISP Project* - total: *11* elements - -[[HTML](https://www.misp-galaxy.org/tds)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tds.json)] - -## Tea Matrix - -[Tea Matrix](https://www.misp-galaxy.org/tea-matrix) - Tea Matrix - -Category: *tea-matrix* - source: ** - total: *7* elements - -[[HTML](https://www.misp-galaxy.org/tea-matrix)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tea-matrix.json)] - -## Threat Actor - -[Threat Actor](https://www.misp-galaxy.org/threat-actor) - Known or estimated adversary groups targeting organizations and employees. Adversary groups are regularly confused with their initial operation or campaign. threat-actor-classification meta can be used to clarify the understanding of the threat-actor if also considered as operation, campaign or activity group. - -Category: *actor* - source: *MISP Project* - total: *678* elements - -[[HTML](https://www.misp-galaxy.org/threat-actor)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/threat-actor.json)] - -## Tidal Campaigns - -[Tidal Campaigns](https://www.misp-galaxy.org/tidal-campaigns) - Tidal Campaigns Cluster - -Category: *Campaigns* - source: *https://app-api.tidalcyber.com/api/v1/campaigns/* - total: *48* elements - -[[HTML](https://www.misp-galaxy.org/tidal-campaigns)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-campaigns.json)] - -## Tidal Groups - -[Tidal Groups](https://www.misp-galaxy.org/tidal-groups) - Tidal Groups Galaxy - -Category: *Threat Groups* - source: *https://app-api.tidalcyber.com/api/v1/groups/* - total: *172* elements - -[[HTML](https://www.misp-galaxy.org/tidal-groups)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-groups.json)] - -## Tidal References - -[Tidal References](https://www.misp-galaxy.org/tidal-references) - Tidal References Cluster - -Category: *References* - source: *https://app-api.tidalcyber.com/api/v1/references/* - total: *4104* elements - -[[HTML](https://www.misp-galaxy.org/tidal-references)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-references.json)] - -## Tidal Software - -[Tidal Software](https://www.misp-galaxy.org/tidal-software) - Tidal Software Cluster - -Category: *Software* - source: *https://app-api.tidalcyber.com/api/v1/software/* - total: *961* elements - -[[HTML](https://www.misp-galaxy.org/tidal-software)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-software.json)] - -## Tidal Tactic - -[Tidal Tactic](https://www.misp-galaxy.org/tidal-tactic) - Tidal Tactic Cluster - -Category: *Tactic* - source: *https://app-api.tidalcyber.com/api/v1/tactic/* - total: *14* elements - -[[HTML](https://www.misp-galaxy.org/tidal-tactic)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-tactic.json)] - -## Tidal Technique - -[Tidal Technique](https://www.misp-galaxy.org/tidal-technique) - Tidal Technique Cluster - -Category: *Technique* - source: *https://app-api.tidalcyber.com/api/v1/technique/* - total: *202* elements - -[[HTML](https://www.misp-galaxy.org/tidal-technique)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tidal-technique.json)] - -## Threat Matrix for storage services - -[Threat Matrix for storage services](https://www.misp-galaxy.org/tmss) - Microsoft Defender for Cloud threat matrix for storage services contains attack tactics, techniques and mitigations relevant storage services delivered by cloud providers. - -Category: *tmss* - source: *https://github.com/microsoft/Threat-matrix-for-storage-services* - total: *40* elements - -[[HTML](https://www.misp-galaxy.org/tmss)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tmss.json)] - -## Tool - -[Tool](https://www.misp-galaxy.org/tool) - threat-actor-tools is an enumeration of tools used by adversaries. The list includes malware but also common software regularly used by the adversaries. - -Category: *tool* - source: *MISP Project* - total: *603* elements - -[[HTML](https://www.misp-galaxy.org/tool)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/tool.json)] - -## UAVs/UCAVs - -[UAVs/UCAVs](https://www.misp-galaxy.org/uavs) - Unmanned Aerial Vehicles / Unmanned Combat Aerial Vehicles - -Category: *military equipment* - source: *Popular Mechanics* - total: *36* elements - -[[HTML](https://www.misp-galaxy.org/uavs)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/uavs.json)] - -## UKHSA Culture Collections - -[UKHSA Culture Collections](https://www.misp-galaxy.org/ukhsa-culture-collections) - UK Health Security Agency Culture Collections represent deposits of cultures that consist of expertly preserved, authenticated cell lines and microbial strains of known provenance. - -Category: *virus* - source: *https://www.culturecollections.org.uk* - total: *6667* elements - -[[HTML](https://www.misp-galaxy.org/ukhsa-culture-collections)] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/ukhsa-culture-collections.json)] - diff --git a/tools/update_README_with_index.py b/tools/update_README_with_index.py new file mode 100755 index 0000000..145caaf --- /dev/null +++ b/tools/update_README_with_index.py @@ -0,0 +1,68 @@ +#!/usr/bin/env python3 +import json +import os +import argparse + + +parser = argparse.ArgumentParser(description='Generate a markdown index with all the galaxy available') +parser.add_argument("-v", "--verbose", action='store_true', help='Verbose output') +args = parser.parse_args() + + +def gen_galaxy_tag(galaxy_name, cluster_name): + # return 'misp-galaxy:{}="{}"'.format(galaxy_name, cluster_name) + return '{}={}'.format(galaxy_name, cluster_name) + + +galaxies_fnames = [] +files_to_ignore = ["cancer.json", "handicap.json"] +pathClusters = '../clusters' +pathGalaxies = '../galaxies' + +for f in os.listdir(pathClusters): + if '.json' in f and f not in files_to_ignore: + galaxies_fnames.append(f) + +galaxies_fnames.sort() +output = [] + +# generate the index +for f in galaxies_fnames: + with open(os.path.join(pathClusters, f)) as fr: + cluster = json.load(fr) + with open(os.path.join(pathGalaxies, f)) as fr: + galaxy = json.load(fr) + if galaxy.get('namespace') == 'deprecated': + continue + output.append(f"## {cluster['name']}\n\n") + link = f.split('.')[0] + total = len(cluster['values']) + output.append(f"[{cluster['name']}](https://www.misp-galaxy.org/{link}) - {cluster['description']}\n") + output.append(f"\nCategory: *{cluster['category']}* - source: *{cluster['source']}* - total: *{total}* elements\n") + output.append(f"\n[[HTML](https://www.misp-galaxy.org/{link})] - [[JSON](https://github.com/MISP/misp-galaxy/blob/main/clusters/{f})]\n\n") + +# update the README.md +readme_out = [] +readme_marker_start = '# Available Galaxy - clusters' +readme_marker_end = '# Online documentation' +with open('../README.md', 'r') as f: + skip = False + for line in f: + if not skip: + readme_out.append(line) + if line.strip() == readme_marker_start: + skip = True + if line.strip() == readme_marker_end: + # append the index + readme_out.append("\n") + readme_out += output + readme_out.append("\n") + readme_out.append(line) + # stop skipping + skip = False + + +with open('../README.md', 'w') as f: + f.write(''.join(readme_out)) + +print("README.md updated with the index of the galaxies.")